29 lines
674 B
Go
29 lines
674 B
Go
package application
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
storage "git.coopgo.io/sbouaram/solidarity-service/storage"
|
|
)
|
|
|
|
func (h *ApplicationHandler) SolidarityMobilityDiverList(w http.ResponseWriter, r *http.Request) {
|
|
|
|
storage.GetDriver()
|
|
|
|
h.Renderer.SolidarityMobilityDiverList(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")
|
|
}
|
|
|