27 lines
590 B
Go
27 lines
590 B
Go
package application
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
func (h *ApplicationHandler) SolidarityServiceDiverList(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
|
h.Renderer.SolidarityServiceDiverList(w, r)
|
|
|
|
}
|
|
|
|
func (h *ApplicationHandler) SilvermobiBookingCreate(w http.ResponseWriter, r *http.Request) {
|
|
fmt.Println("SilverBookingC")
|
|
}
|
|
|
|
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")
|
|
}
|
|
|