package application import ( "fmt" "net/http" ) func (h *ApplicationHandler) SolidarityServiceBookingList(w http.ResponseWriter, r *http.Request) { h.Renderer.SolidarityServiceBookingList(w, r) } func (h *ApplicationHandler) SolidarityServiceBookingCreate(w http.ResponseWriter, r *http.Request) { h.Renderer.SolidarityServiceBookingCreate(w, r ) } func (h *ApplicationHandler) SilvermobiBookingUpdate(w http.ResponseWriter, r *http.Request) { fmt.Println("SilverBookingU") } func (h *ApplicationHandler) SilvermobiBookingDelete(w http.ResponseWriter, r *http.Request) { fmt.Println("SilverBookingD") }