traffic with osm auth

This commit is contained in:
Tykayn 2025-09-21 12:27:00 +02:00 committed by tykayn
parent 6d755ee8dc
commit e274e91dcb
4 changed files with 649 additions and 5 deletions

View file

@ -62,6 +62,7 @@ def create_app():
app.add_route('/demo/by-what', demo, suffix='by_what') # Handle events by type page
app.add_route('/demo/map-by-what', demo, suffix='map_by_what') # Handle map by event type page
app.add_route('/demo/edit/{id}', demo, suffix='edit') # Handle event editing page
app.add_route('/demo/traffic', demo, suffix='traffic') # Handle traffic jam reporting page
logger.success("Application initialized successfully")
return app