12 lines
181 B
Go
12 lines
181 B
Go
|
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")
|
||
|
}
|