This commit is contained in:
2025-08-07 22:50:30 +02:00
parent d36d8d2204
commit 375646b903
3 changed files with 9 additions and 0 deletions

View File

@@ -4,12 +4,18 @@ import (
"fitra-backend/application"
"fitra-backend/controllers"
"fmt"
"log"
"os"
"github.com/gin-gonic/gin"
"github.com/joho/godotenv"
)
func main() {
if err := godotenv.Load(); err != nil {
log.Println("No .env file found")
}
go application.StartCleanupRoutine()
r := gin.Default()