package main import "fmt" import "net/http" import "hnakra/service" func main () { static := http.FileServer(http.Dir("./static")) http.HandleFunc("/gifs/", gifs) http.Handle("/gifs/static/", http.StripPrefix("/gifs/static", static)) service.NewService ( "Gifs", "Serves a lot of big gifs on one page.", service.NewHTTP("@", "/gifs/", nil)).Run() } func gifs (res http.ResponseWriter, req *http.Request) { res.Header().Add("content-type", "text/html") res.WriteHeader(http.StatusOK) img := func (number int) { fmt.Fprintf(res, "", number) } fmt.Fprintln(res, "Gifs") img(0) img(1) img(2) img(3) img(4) img(5) img(6) img(7) fmt.Fprintln(res, "") }