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