add plan in todo readme

This commit is contained in:
Tykayn 2025-09-16 01:09:20 +02:00 committed by tykayn
parent afe83a9a3c
commit 2c4f79edbb
4 changed files with 450 additions and 4 deletions

View file

@ -61,6 +61,7 @@ def create_app():
app.add_route('/demo/add', event_form) # Handle event submission form
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
logger.success("Application initialized successfully")
return app