8 lines
186 B
Python
Executable file
8 lines
186 B
Python
Executable file
from flask import Flask
|
|
from .blueprint import blueprint
|
|
|
|
app = Flask(__name__)
|
|
app.register_blueprint(blueprint, url_prefix='/')
|
|
|
|
if __name__ == '__main__':
|
|
app.run(host='0.0.0.0')
|