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.
|
package http
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/genofire/hs_master-kss-monolith/lib"
|
|
)
|
|
|
|
func statusHandler(w http.ResponseWriter, r *http.Request) {
|
|
lib.Write(w, "hello world")
|
|
}
|