feat: init package

This commit is contained in:
Ayo Ayco 2024-05-20 15:21:05 +02:00
parent bd917f6b4c
commit 0e126921ea
2 changed files with 2 additions and 2 deletions

0
__init__.py Normal file
View file

4
app.py
View file

@ -1,6 +1,6 @@
from flask import Flask
from threads import threads
from cache import cache
from .threads import threads
from .cache import cache
app = Flask(__name__)
cache.init_app(app, config={'CACHE_TYPE': 'SimpleCache'})