mirror of
https://github.com/sammyshear/trivia-chase.git
synced 2025-12-06 03:55:53 +00:00
13 lines
154 B
Go
13 lines
154 B
Go
package cmd
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/sammyshear/trivia-chase/api"
|
|
)
|
|
|
|
func App() {
|
|
mux := api.NewRoutes()
|
|
http.ListenAndServe(":3000", mux)
|
|
}
|