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