NO DISPATCHER IMPORT IN HANDLERS ANYMORE!

This commit is contained in:
latand 2021-04-25 23:42:14 +03:00
parent 2554b9aacc
commit aecdcb9b88
2 changed files with 7 additions and 9 deletions

View File

@ -1,4 +1,4 @@
from .errors import dp
from .users import dp
__all__ = ["dp"]
from . import errors
from . import users
from . import groups
from . import channels

View File

@ -1,5 +1,3 @@
from .help import dp
from .start import dp
from .echo import dp
__all__ = ["dp"]
from . import help
from . import echo
from . import start