mirror of
https://github.com/fishtailstudio/imgo
synced 2025-10-05 08:16:58 +08:00
12 lines
188 B
Go
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)
|
|
}
|