This repository has been archived on 2025-09-07. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
MouseyBot/Mousey/Misc/__init__.py

18 lines
322 B
Python

__all__ = [
"stickers_id",
"UserRole",
"NewsStatus",
"LOG_DIR",
"LOCALE_DIR",
"BOT_SETTINGS_DIR",
"CONFIG_FILE_PATH",
]
from .stickers_id import stickers_id
from .enums import UserRole, NewsStatus
from .paths import (
LOG_DIR,
LOCALE_DIR,
BOT_SETTINGS_DIR,
CONFIG_FILE_PATH,
)