10 lines
138 B
Go
10 lines
138 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func HandlerHealth(w http.ResponseWriter, r *http.Request) {
|
|
respondWithJSON(w, 200, struct{}{})
|
|
}
|