parcoursmob/handlers/application/solidarity_service.go

27 lines
590 B
Go
Raw Normal View History

package application
import (
"fmt"
"net/http"
)
2024-05-02 07:54:51 +00:00
func (h *ApplicationHandler) SolidarityServiceDiverList(w http.ResponseWriter, r *http.Request) {
2024-05-02 07:54:51 +00:00
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")
}