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