Got Http requests working.

This commit is contained in:
Karthik Pullela
2018-01-20 13:54:35 -08:00
parent 1080e968a4
commit f29c8aeb80
742 changed files with 93021 additions and 2 deletions
@@ -0,0 +1,15 @@
# -*- 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)