mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-06 14:16:39 +08:00
7c4a4bf2f0
eb09257 Add gunicorn to pyextra
9558197 add flask to pyextra
git-subtree-dir: pyextra
git-subtree-split: eb092578c359bd54db22569d696ecacbd90237c3
old-commit-hash: ea6c19638c
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)
|