Skip to content

Commit 7092d56

Browse files
committed
Updated template TODO
Exporting `BaseAppSettings` config
1 parent 0a4469d commit 7092d56

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

TEMPLATE.md

+1
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@ This Application implements the following:
3636
## Pending features to add to repo
3737

3838
- Async database using SQLAlchemy ORM
39+
- Authentication (token-based)

sample_fastapi/app/config/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .depends import get_app_dirs, get_app_settings
2-
from .models import AppDirectories, AppSettings
2+
from .models import AppDirectories, AppSettings, BaseAppSettings
33

4-
__all__ = ["get_app_dirs", "get_app_settings", "AppDirectories", "AppSettings"]
4+
__all__ = ["get_app_dirs", "get_app_settings", "BaseAppSettings", "AppDirectories", "AppSettings"]

0 commit comments

Comments
 (0)