route for silvermobi frontend and backend

This commit is contained in:
Maxime 2024-04-24 16:05:21 +02:00
parent 41d5f02879
commit ebad682a65
3 changed files with 16 additions and 12 deletions

View File

@ -44,7 +44,7 @@ func (h *ApplicationHandler) Groups(w http.ResponseWriter, r *http.Request) {
}
resp, err := h.services.GRPC.GroupsManagement.GetGroups(context.TODO(), request)
if err != nil {
if err != nil {
fmt.Println(err)
w.WriteHeader(http.StatusInternalServerError)
return

View File

@ -1,23 +1,27 @@
package application
package application
import (
"fmt"
"net/http"
)
func (h *ApplicationHandler) SilvermobiBookingList(w http.ResponseWriter, r *http.Request ) {
func (h *ApplicationHandler) SilvermobiBookingList(w http.ResponseWriter, r *http.Request) {
h.Renderer.SilvermobiBookingList(w, r)
fmt.Println("SilverBookingR")
}
func (h *ApplicationHandler) SilvermobiBookingCreate(w http.ResponseWriter, r *http.Request){
func (h *ApplicationHandler) SilvermobiBookingCreate(w http.ResponseWriter, r *http.Request) {
fmt.Println("SilverBookingC")
}
func (h *ApplicationHandler) SilvermobiBookingUpdate(w http.ResponseWriter, r *http.Request){
func (h *ApplicationHandler) SilvermobiBookingUpdate(w http.ResponseWriter, r *http.Request) {
fmt.Println("SilverBookingU")
}
func (h *ApplicationHandler) SilvermobiBookingDelete(w http.ResponseWriter, r *http.Request){
func (h *ApplicationHandler) SilvermobiBookingDelete(w http.ResponseWriter, r *http.Request) {
fmt.Println("SilverBookingD")
}
}

View File

@ -138,10 +138,10 @@ func main() {
/*********************** CODE GROUP **************************/
//=================================silvermobi====================================
application.HandleFunc("/app/silvermobi/create", applicationHandler.SilvermobiBookingCreate)
application.HandleFunc("/app/silvermobi/", applicationHandler.SilvermobiBookingList)
application.HandleFunc("/app/silvermobi/update/{memberid}/{bookingid}", applicationHandler.SilvermobiBookingUpdate)
application.HandleFunc("/app/silvermobi/delete/{memberid}/{bookingid}", applicationHandler.SilvermobiBookingDelete)
application.HandleFunc("/silvermobi/create", applicationHandler.SilvermobiBookingCreate)
application.HandleFunc("/silvermobi/", applicationHandler.SilvermobiBookingList)
application.HandleFunc("/silvermobi/update/{memberid}/{bookingid}", applicationHandler.SilvermobiBookingUpdate)
application.HandleFunc("/silvermobi/delete/{memberid}/{bookingid}", applicationHandler.SilvermobiBookingDelete)
appGroup := application.PathPrefix("/group_module").Subrouter()
appGroup.HandleFunc("/", applicationHandler.Groups)