package handler import ( "net/http" "github.com/gin-gonic/gin" ) // AuthLogin POST /api/auth/login func AuthLogin(c *gin.Context) { c.JSON(http.StatusOK, gin.H{"success": true}) } // AuthResetPassword POST /api/auth/reset-password func AuthResetPassword(c *gin.Context) { c.JSON(http.StatusOK, gin.H{"success": true}) }