2025-12-02 18:54:14 +08:00

17 lines
304 B
Python

"""
Main application entry point
"""
from app import create_app
from app.config import Config
app = create_app(Config())
if __name__ == '__main__':
config = Config()
app.run(
host=config.server_host,
port=config.server_port,
debug=(config.server_mode == 'debug')
)