Initial commit

This commit is contained in:
2025-03-20 22:23:25 -03:00
parent d4a696a5fb
commit bc675abb58
8 changed files with 241 additions and 0 deletions

14
internal/routes/routes.go Normal file
View File

@@ -0,0 +1,14 @@
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)
}