mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-01-31 11:51:39 +03:00
11 lines
112 B
Python
11 lines
112 B
Python
"""Flask application."""
|
|
|
|
import flask
|
|
|
|
|
|
app = flask.Flask(__name__)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app.run()
|