Eu quero começar o seguinte código Golang com o systemd:
...
func main() {
// main routes
http.HandleFunc("/", hello)
log.Fatalln(http.ListenAndServe(":80", nil))
}
func hello(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w,...
14.11.2018 / 12:58