Categorygithub.com/DOSuzer/go-jwt-auth
repositorypackage
0.0.0-20240419122356-61bc9110891d
Repository: https://github.com/dosuzer/go-jwt-auth.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

go-jwt-auth

Запуск

docker-compose up -d
go install
go run main.go

Ручки (localhost:8080)

POST("/login", controllers.Login)
POST("/signup", controllers.Signup)
POST("/refresh, controllers.Refresh)
GET("/home", middlewares.IsAuthorized(), controllers.Home)
GET("/premium", controllers.Premium)
GET("/me", middlewares.IsAuthorized(), controllers.Me)
PATCH("/me", middlewares.IsAuthorized(), controllers.Update)