28 lines
581 B
Go
28 lines
581 B
Go
package application
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
func (h *ApplicationHandler) SilvermobiBookingList(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
|
|
|
h.Renderer.SilvermobiBookingList(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")
|
|
}
|
|
|