This commit is contained in:
Patrick Alvin Alcala 2026-02-16 11:38:46 +08:00
parent 90057b851e
commit 4ece98daf3
7 changed files with 0 additions and 0 deletions

17
backend/main.go Normal file
View file

@ -0,0 +1,17 @@
package main
import (
"log"
_ "github.com/go-sql-driver/mysql"
"github.com/joho/godotenv"
)
func main() {
err := godotenv.Load()
if err != nil {
log.Fatal("Error loading .env file")
}
connect()
}