Files
inp2025/backend/handlers/auth/getLogin.go
2025-09-07 23:47:48 +08:00

17 lines
244 B
Go

package auth
import (
"net/http"
"gitea.konchin.com/ytshih/inp2025/game/utils"
"github.com/uptrace/bunrouter"
)
func (self *Handlers) GetLogin(
w http.ResponseWriter,
req bunrouter.Request,
) error {
// TODO
return utils.Success(w)
}