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

18
cmd/main.go Normal file
View File

@@ -0,0 +1,18 @@
package main
import (
"log"
"Tasker_API/internal/routes"
"github.com/gin-gonic/gin"
)
func main() {
router := gin.Default()
routes.InitializeRoutes(router)
log.Println("Server running on port 8080")
if err := router.Run(":8080"); err != nil {
log.Fatal("Unable to start:", err)
}
}