2014-04-21 17:52:04 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
"""
|
|
|
|
|
flask.__main__
|
|
|
|
|
~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Alias for flask.run for the command line.
|
|
|
|
|
|
2015-01-02 11:35:00 +09:00
|
|
|
:copyright: (c) 2015 by Armin Ronacher.
|
2014-04-21 17:52:04 +02:00
|
|
|
:license: BSD, see LICENSE for more details.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2014-05-09 07:48:08 -07:00
|
|
|
from .cli import main
|
2014-04-21 17:52:04 +02:00
|
|
|
main(as_module=True)
|