11 lines
264 B
Python
Executable file
11 lines
264 B
Python
Executable file
from flask import Flask
|
|
from .threads import threads
|
|
from .cache import cache
|
|
|
|
app = Flask(__name__)
|
|
cache.init_app(app, config={'CACHE_TYPE': 'SimpleCache'})
|
|
app.register_blueprint(threads, url_prefix='/')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app.run(host='0.0.0.0')
|