Initial commit: Markov Economics Simulation App

This commit is contained in:
2025-08-24 19:12:50 +02:00
commit 26c82959a2
28 changed files with 3646 additions and 0 deletions

11
app/routes/__init__.py Normal file
View File

@@ -0,0 +1,11 @@
"""
Flask routes package.
Contains the main web interface routes and API endpoints for the
Markov economics simulation application.
"""
from .main import main_bp
from .api import api_bp
__all__ = ['main_bp', 'api_bp']