cpolis/main.go

9 lines
111 B
Go
Raw Normal View History

2024-02-18 07:20:51 +01:00
package main
import "net/http"
func main() {
mux := http.NewServeMux()
http.ListenAndServe(":8080", mux)
}