belfry.life/main.go

16 lines
228 B
Go

package main
import (
"fmt"
"log"
"net/http"
)
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Batts in the Belfry")
})
log.Fatal(http.ListenAndServe(":8080", nil))
}