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