diff options
Diffstat (limited to 'api/routes.go')
| -rw-r--r-- | api/routes.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/api/routes.go b/api/routes.go new file mode 100644 index 0000000..e3aac5b --- /dev/null +++ b/api/routes.go @@ -0,0 +1,10 @@ +package api + +import ( + "fmt" + "net/http" +) + +func healthCheckFunc(w http.ResponseWriter, r *http.Request) { + fmt.Fprintf(w, "Hello there chief") +} |