10 lines
187 B
Go
10 lines
187 B
Go
|
package providers
|
||
|
|
||
|
import (
|
||
|
"framework_v2/internal/http/controllers/user"
|
||
|
)
|
||
|
|
||
|
func InitApiRoutes() {
|
||
|
HandleRoute(GET, "/", user.CurrentUser, MiddlewareJWTAuth, MiddlewareJSONResponse)
|
||
|
}
|