main.go 161 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 package main import ( "joongna/router" "github.com/labstack/echo/v4" ) func main() { e := echo.New() router.Init(e) e.Logger.Fatal(e.Start(":8080")) }