client md panel
This commit is contained in:
26
handlers/client/mdpanel.handlers.go
Normal file
26
handlers/client/mdpanel.handlers.go
Normal file
@@ -0,0 +1,26 @@
|
||||
package client_handlers
|
||||
|
||||
import (
|
||||
"cpone/utils"
|
||||
client_mdpanel "cpone/views/client/mdpanel"
|
||||
|
||||
"github.com/labstack/echo/v4"
|
||||
)
|
||||
|
||||
type MdPanelService interface {
|
||||
}
|
||||
|
||||
func NewMdPanelHandler(us MdPanelService) *MdPanelHandler {
|
||||
return &MdPanelHandler{
|
||||
MdPanelService: us,
|
||||
}
|
||||
}
|
||||
|
||||
type MdPanelHandler struct {
|
||||
MdPanelService MdPanelService
|
||||
}
|
||||
|
||||
func (uh *MdPanelHandler) ShowMdPanel(c echo.Context) error {
|
||||
helo := client_mdpanel.Show()
|
||||
return utils.View(c, helo)
|
||||
}
|
||||
@@ -80,4 +80,8 @@ func SetupRoutesClient(app *echo.Echo, appStore db.AppStore) {
|
||||
l := client_services.NewServicesMdBahan(appStore)
|
||||
lh := client_handlers.NewMdBahanHandler(l)
|
||||
public.GET("/md/bahan", lh.ShowMdBahan)
|
||||
|
||||
lpanel := client_services.NewServicesMdPanel(appStore)
|
||||
lhpanel := client_handlers.NewMdPanelHandler(lpanel)
|
||||
public.GET("/md/panel", lhpanel.ShowMdPanel)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user