fix: notifications (#3)

This commit is contained in:
Paulo Freitas
2022-08-26 00:17:51 -03:00
committed by GitHub
parent 6f8ed63ee4
commit 3fa1caddc3

View File

@@ -111,7 +111,7 @@ fastapi-project
3. When package requires services or dependencies or constants from other packages - import them with explicit module name 3. When package requires services or dependencies or constants from other packages - import them with explicit module name
```python ```python
from src.auth import constants as auth_constants from src.auth import constants as auth_constants
from src.notifictions import service as notification_service from src.notifications import service as notification_service
from src.posts.constants import ErrorCode as PostsErrorCode # in case we have Standard ErrorCode in constants module of each package from src.posts.constants import ErrorCode as PostsErrorCode # in case we have Standard ErrorCode in constants module of each package
``` ```