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