Enable donation_notifications_router

This commit is contained in:
2023-05-24 20:55:05 +02:00
parent ac4d0fcb3f
commit 358b5eebb3

View File

@@ -1,6 +1,12 @@
from .donate_notifications import donation_notifications_router
from .healthcheck import healthcheck_router
from .languages import languages_router
from .users import users_router
__all__ = ["healthcheck_router", "languages_router", "users_router"]
__all__ = [
"healthcheck_router",
"languages_router",
"users_router",
"donation_notifications_router",
]