marcel-dempers 921737efb3 shipa wip
2020-11-24 11:33:08 +11:00

20 lines
382 B
Go

package main
import (
"fmt"
"net/http"
"os"
)
func main() {
http.HandleFunc("/", hello)
fmt.Println("hello world")
err := http.ListenAndServe(":" + os.Getenv("PORT"), nil)
if err != nil {
panic(err)
}
}
func hello(res http.ResponseWriter, req *http.Request) {
fmt.Fprintln(res, "Hello World! from Golang on Shipa")
}