mirror of https://github.com/mitsuhiko/flask.git
Armin Ronacher
11 years ago
2 changed files with 30 additions and 1 deletions
@ -0,0 +1,15 @@ |
|||||||
|
# -*- coding: utf-8 -*- |
||||||
|
""" |
||||||
|
flask.__main__ |
||||||
|
~~~~~~~~~~~~~~ |
||||||
|
|
||||||
|
Alias for flask.run for the command line. |
||||||
|
|
||||||
|
:copyright: (c) 2014 by Armin Ronacher. |
||||||
|
:license: BSD, see LICENSE for more details. |
||||||
|
""" |
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__': |
||||||
|
from run import main |
||||||
|
main(as_module=True) |
Loading…
Reference in new issue