framework_v2/internal/http/routes/api.go

8 lines
136 B
Go
Raw Normal View History

2024-06-13 07:36:51 +00:00
package routes
2024-06-13 07:08:55 +00:00
2024-06-13 07:36:51 +00:00
import "framework_v2/internal/http/controllers/user"
2024-06-13 07:08:55 +00:00
func InitApiRoutes() {
HandleRoute(GET, "/", user.CurrentUser)
}