mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-22 09:33:52 +08:00
15 lines
291 B
Python
15 lines
291 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
flask.__main__
|
|
~~~~~~~~~~~~~~
|
|
|
|
Alias for flask.run for the command line.
|
|
|
|
:copyright: © 2010 by the Pallets team.
|
|
:license: BSD, see LICENSE for more details.
|
|
"""
|
|
|
|
if __name__ == '__main__':
|
|
from .cli import main
|
|
main(as_module=True)
|