GoWeb/routes/postRoutes.go

21 lines
459 B
Go
Raw Normal View History

package routes
import (
"GoWeb/app"
"GoWeb/controllers"
"net/http"
)
2022-11-04 20:12:57 +00:00
// PostRoutes defines all project post routes
func PostRoutes(app *app.App) {
2022-11-04 20:12:57 +00:00
// Post controller struct initialize
postController := controllers.PostController{
App: app,
}
2022-11-04 20:12:57 +00:00
// User authentication
http.HandleFunc("/register-handle", postController.Register)
http.HandleFunc("/login-handle", postController.Login)
2023-05-04 13:26:44 +00:00
http.HandleFunc("/upload-handle", postController.FileUpload)
}