10 lines
148 B
Go
10 lines
148 B
Go
package routes
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func (routes *Routes) HealthCheck(rw http.ResponseWriter, req *http.Request) {
|
|
_, _ = rw.Write([]byte{})
|
|
}
|