This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
uwu-me/uwume/__init__.py

14 lines
278 B
Python
Raw Normal View History

from flask import Flask
from os import urandom
from os import environ
try:
import uwume.lib.databaseMethods
except:
from .lib.databaseMethods import initialize_database
app = Flask(__name__)
app.secret_key = urandom(12).hex()
initialize_database()
from . import uwume