streamin-be/main.go

18 lines
230 B
Go
Raw Normal View History

2026-04-23 04:02:18 +00:00
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)
}