18 lines
328 B
Go
18 lines
328 B
Go
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})
|
|
}
|