mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 02:42:48 +00:00
17 lines
209 B
Go
17 lines
209 B
Go
package main
|
|
|
|
import (
|
|
//"fmt"
|
|
//"github.com/julienschmidt/httprouter"
|
|
"log"
|
|
"net/http"
|
|
|
|
"github.com/mgerb42/mywebsite/route"
|
|
)
|
|
|
|
func main() {
|
|
|
|
log.Fatal(http.ListenAndServe(":8080", route.Routes()))
|
|
|
|
}
|