mirror of
https://0xacab.org/johnxina/rat.git
synced 2024-12-23 13:09:08 +00:00
25 lines
611 B
Python
25 lines
611 B
Python
from aioflask import Flask
|
|
from flask_caching import Cache
|
|
|
|
from functools import wraps
|
|
|
|
def awaitify(sync_func):
|
|
"""Wrap a synchronous callable to allow ``await``'ing it"""
|
|
@wraps(sync_func)
|
|
async def async_func(*args, **kwargs):
|
|
return sync_func(*args, **kwargs)
|
|
return async_func
|
|
|
|
app = Flask(__name__)
|
|
|
|
######################################################################
|
|
|
|
app.config['SERVER_NAME'] = '127.0.0.1:8886'
|
|
|
|
should_fetch_comments = True
|
|
|
|
######################################################################
|
|
|
|
app.config['CACHE_TYPE'] = 'SimpleCache'
|
|
cache = Cache(app)
|