Files
nginx-unit/test/go/empty/app.go
2019-08-14 14:06:28 +03:00

14 lines
191 B
Go

package main
import (
"net/http"
"nginx/unit"
)
func handler(w http.ResponseWriter, r *http.Request) {}
func main() {
http.HandleFunc("/", handler)
unit.ListenAndServe(":7080", nil)
}