GoWeb/routes/post.go

22 lines
512 B
Go
Raw Permalink Normal View History

package routes
import (
"GoWeb/app"
"GoWeb/controllers"
"GoWeb/middleware"
"net/http"
)
// Post defines all project post routes
func Post(app *app.App) {
2022-11-04 20:12:57 +00:00
// Post controller struct initialize
postController := controllers.Post{
App: app,
}
2022-11-04 20:12:57 +00:00
// User authentication
http.HandleFunc("POST /register-handle", middleware.Csrf(postController.Register))
http.HandleFunc("POST /login-handle", middleware.Csrf(postController.Login))
http.HandleFunc("POST /logout", middleware.Csrf(postController.Logout))
}