11 lines
220 B
Python
11 lines
220 B
Python
"""
|
|
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'] |