ADD: added raw structure

This commit is contained in:
2025-05-18 20:14:40 +02:00
parent a43af99699
commit 214ab55ad2
27 changed files with 16731 additions and 0 deletions

27
backend/cmd/main.go Normal file
View File

@@ -0,0 +1,27 @@
package main
import (
"fmt"
"volleyball/internal/database"
)
func main() {
// Initialize the database connection
var db = database.New("localhost", 5432, "user", "password", "dbname")
db.Connect()
// Initialize the server
// server := server.New(db)
// server.Start()
// Initialize the router
// router := router.New()
// router.Start()
// Initialize the logger
// logger := logger.New()
// logger.Start()
// Initialize the config
// config := config.New()
fmt.Println("Hello, World!")
}