truck-company/cmd/api/main.go
2025-03-27 18:18:48 +00:00

14 lines
137 B
Go

package main
import (
"net/http"
"github.com/gorilla/mux"
)
func main() {
r := mux.NewRouter()
http.ListenAndServe(":8080", r)
}