genofire/hs_monolith
genofire
/
hs_monolith
Archived
1
0
Fork 0
This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
hs_monolith/http/status.go

12 lines
177 B
Go
Raw Normal View History

2017-03-25 16:09:17 +01:00
package http
import (
"net/http"
"github.com/genofire/hs_master-kss-monolith/lib"
)
func statusHandler(w http.ResponseWriter, r *http.Request) {
2017-03-26 20:11:09 +02:00
lib.Write(w, "running")
2017-03-25 16:09:17 +01:00
}