feat: use __all__ to export deps from __init__.py (#2630)

* feat: export wallets
* remove linting exception
This commit is contained in:
dni ⚡
2024-08-08 07:29:21 +02:00
committed by GitHub
parent 40ffa7dea0
commit 74d4ddd312
4 changed files with 28 additions and 4 deletions
+3
View File
@@ -38,3 +38,6 @@ def init_core_routers(app: FastAPI):
app.include_router(tinyurl_router)
app.include_router(webpush_router)
app.include_router(users_router)
__all__ = ["core_app", "core_app_extra", "db"]