func statusNotFound()

in service/main.go [87:90]


func statusNotFound(w http.ResponseWriter) {
	w.WriteHeader(http.StatusNotFound)
	fmt.Fprintln(w, "Status Not Found (404) - resource not found.")
}