OpenPrice/main.go

15 lines
221 B
Go
Raw Normal View History

2020-08-10 10:25:25 +00:00
package main
import (
"fmt"
"net/http"
)
func main() {
http.HandleFunc("/test", func (w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "test")
})
http.ListenAndServe(":8080", nil)
}