clear store

This commit is contained in:
Sas Andy
2024-05-13 14:35:40 +07:00
parent 1a4f1ee2d6
commit 93186320d7
13 changed files with 22 additions and 145 deletions

View File

@@ -7,6 +7,7 @@ import (
public_handlers "cpone/handlers/public"
client_services "cpone/services/client"
corporate_services "cpone/services/corporate"
dev_services "cpone/services/dev"
public_services "cpone/services/public"
"cpone/db"
@@ -176,4 +177,10 @@ func SetupRoutesClient(app *echo.Echo, appStore db.AppStore) {
public.GET("/transaksi/samplestation", txSampleStationHandler.ShowTransaksiSampleStation)
}
func SetupRoutesDev(app *echo.Echo, appStore db.AppStore) {}
func SetupRoutesDev(app *echo.Echo, appStore db.AppStore) {
dev := app.Group("/dev")
dvlpserv := dev_services.NewServicesLandingPage(appStore)
devlphan := dev_handlers.NewLandingPageHandler(dvlpserv)
dev.GET("/landingpage", devlphan.ShowLandingPage)
}