9 lines
111 B
Go
9 lines
111 B
Go
|
package main
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
func main() {
|
||
|
mux := http.NewServeMux()
|
||
|
http.ListenAndServe(":8080", mux)
|
||
|
}
|