Files
30-seconds-of-code/website/web/Lib/site-packages/flask/__main__.py
Rohit Tanwar e880709a0d website
2018-02-17 19:36:05 +05:30

16 lines
291 B
Python

# -*- coding: utf-8 -*-
"""
flask.__main__
~~~~~~~~~~~~~~
Alias for flask.run for the command line.
:copyright: (c) 2015 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
if __name__ == '__main__':
from .cli import main
main(as_module=True)