linkinfo/service/main.go
Tyler 75989c9337
All checks were successful
continuous-integration/drone/push Build is passing
Split into service and main, refactor some code and add better tests
2019-10-03 19:59:20 -04:00

16 lines
229 B
Go

package main
import (
"net/http"
)
func main() {
mux := http.NewServeMux()
mux.HandleFunc("/info", handleInfoRequest)
http.ListenAndServe(":8080", mux)
}
func handleInfoRequest(w http.ResponseWriter, r *http.Request) {
}