This commit is contained in:
Patrick Alvin Alcala 2025-11-24 16:33:12 +08:00
parent fe90f5988a
commit 499e1530cc
9 changed files with 195 additions and 9 deletions

17
backend/go/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()
}