MusaedMusaedSadeqMusaedAl-Fareh225739
backend folder
10fba92
raw
history blame contribute delete
227 Bytes
"""MrrrMe Backend - Refactored Modular Structure"""
from .app import app
from .config import *
from .utils import apply_all_patches
# Apply system patches on import
apply_all_patches()
__version__ = "2.0.0"
__all__ = ['app']