package routes import ( "synlotto-website/internal/handlers" "synlotto-website/internal/platform/bootstrap" ) func RegisterHomeRoutes(app *bootstrap.App) { app.Router.GET("/", handlers.Home(app)) }