Инициализаторы пакетов

This commit is contained in:
2025-12-08 16:45:02 +07:00
parent 7f592493bc
commit 56b09a6de8
6 changed files with 13 additions and 0 deletions

3
bot/__init__.py Normal file
View File

@@ -0,0 +1,3 @@
from .cogs import *
from .bot import *
from .storage import *

4
bot/cogs/__init__.py Normal file
View File

@@ -0,0 +1,4 @@
from .events import *
from .blacklist import *
from .reminders import *
from .moderation import *

1
configs/__init__.py Normal file
View File

@@ -0,0 +1 @@
from .config import *

2
middleware/__init__.py Normal file
View File

@@ -0,0 +1,2 @@
from .loggers import *
from .validators import *

View File

@@ -0,0 +1 @@
from .logs import *

View File

@@ -0,0 +1,2 @@
from .email_vld import *
from .url_vld import *