Files
Tasker_API/internal/routes/routes.go
2025-03-20 22:23:25 -03:00

15 lines
249 B
Go

package routes
import (
"Tasker_API/internal/handlers"
"github.com/gin-gonic/gin"
)
// InitializeRoutes sets up the API routes.
func InitializeRoutes(router *gin.Engine) {
// Health check endpoint
router.GET("/ping", handlers.PingHandler)
}