package main import ( "fmt" "net/http" "streamin-be/app/database" "streamin-be/app/router" ) func main() { database.InitDB() router.InitRouter() fmt.Println("🚀 running on :8080") http.ListenAndServe(":8080", nil) }