package controllers import ( "net/http" "github.com/gin-gonic/gin" ) func GetUser(c *gin.Context) { c.JSON(http.StatusOK, gin.H{"message": "User found"}) } func GetUserPreferences(c *gin.Context) { c.JSON(http.StatusOK, gin.H{"message": "Preferences fetched successfully"}) } func UpdateUserPreferences(c *gin.Context) { c.JSON(http.StatusOK, gin.H{"message": "Preferences updated successfully"}) }