Files
imgo/examples/http.go
2022-06-22 14:07:54 +08:00

12 lines
188 B
Go

package main
import (
"github.com/fishtailstudio/imgo"
"net/http"
)
func main() {
http.HandleFunc("/gopher", imgo.Load("gopher.png").HttpHandler)
http.ListenAndServe(":8080", nil)
}