Custom css SAS & layout playground

This commit is contained in:
Sas Andy
2024-04-25 16:56:20 +07:00
parent 34be7a29a1
commit da95e5b89f
13 changed files with 5213 additions and 7 deletions

View File

@@ -38,6 +38,14 @@ func main() {
handlers.SetupRoutes(app, h)
xStore, err := db.NewXsampleStore(dbName)
if err != nil {
app.Logger.Fatalf("failed to create store: %s", err)
}
xs := services.NewServicesXsample(services.Xsample{}, xStore)
xh := handlers.NewXsampleHandler(xs)
handlers.SetupRoutesXsample(app, xh)
app.Logger.Fatal(app.Start(":5000"))
}