upda/server/api_handler_auth.go
Varakh d12db38a73
All checks were successful
/ build (push) Successful in 3m8s
Initial commit
2023-12-21 17:04:04 +01:00

18 lines
303 B
Go

package server
import (
"github.com/gin-gonic/gin"
"net/http"
)
type authHandler struct {
}
func newAuthHandler() *authHandler {
return &authHandler{}
}
func (h *authHandler) login(c *gin.Context) {
c.Header(headerContentType, headerContentTypeApplicationJson)
c.Status(http.StatusNoContent)
}