mxblog/cmd/blog/main.go
2020-04-21 19:03:45 +03:00

13 lines
150 B
Go

package main
import (
"mxblog/internal/httpserver"
"net/http"
)
func main() {
h, _ := httpserver.URLRouter()
http.ListenAndServe(":8080", h)
}