Files
nginx-unit/test/go/empty/app.go
2018-06-08 18:32:55 +03:00

14 lines
203 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)
}