You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
291 B
15 lines
291 B
# -*- 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)
|
|
|