15 lines
249 B
Go
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)
|
|
|
|
}
|