rag/internal/routes/api_routes.go

12 lines
235 B
Go
Raw Normal View History

2024-06-15 16:55:25 +00:00
package routes
import (
"framework_v2/internal/app/gin"
"framework_v2/internal/http/controllers/user"
"framework_v2/internal/middleware/http"
)
func InitApiRoutes() {
gin.GET("/", http.MiddlewareJSONResponse, user.CurrentUser)
}