add route 'app/silvermobi' + add CRUD functions in handler's folder
This commit is contained in:
23
handlers/application/silvermobi.go
Normal file
23
handlers/application/silvermobi.go
Normal file
@@ -0,0 +1,23 @@
|
||||
package application
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
|
||||
func (h *ApplicationHandler) SilvermobiBookingList(w http.ResponseWriter, r *http.Request) {
|
||||
fmt.Println("SilverBookingR")
|
||||
}
|
||||
|
||||
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")
|
||||
}
|
||||
Reference in New Issue
Block a user