Spaces:
Sleeping
Sleeping
File size: 227 Bytes
10fba92 |
1 2 3 4 5 6 7 8 9 10 11 |
"""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']
|