This repository has been archived by the owner on Jan 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: minor reorganization of files for better clarity
- Loading branch information
Showing
12 changed files
with
39 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
...t_nguoi/modules/get_data/get_data_base.py → ...heck_phat_nguoi/get_data/get_data_base.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
from check_phat_nguoi.modules.setup_logger import setup_logger | ||
|
||
from .get_data import * | ||
|
||
__all__ = ["setup_logger", "GetDataCheckPhatNguoi"] | ||
from .constants import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
from .config import CONFIG_PATHS, DETAIL_LOG_MESSAGE, SIMPLE_LOG_MESSAGE | ||
from .get_data import ( | ||
DATETIME_FORMAT_CHECKPHATNGUOI, | ||
GET_DATA_API_URL_CHECKPHATNGUOI, | ||
OFFICE_NAME_PATTERN, | ||
) | ||
from .notify import ( | ||
MESSAGE_MARKDOWN_PATTERN, | ||
RESOLUTION_LOCATION_MARKDOWN_PATTERN, | ||
SEND_MESSAGE_API_URL_TELEGRAM, | ||
) | ||
|
||
__all__ = [ | ||
"CONFIG_PATHS", | ||
"DETAIL_LOG_MESSAGE", | ||
"SIMPLE_LOG_MESSAGE", | ||
"DATETIME_FORMAT_CHECKPHATNGUOI", | ||
"GET_DATA_API_URL_CHECKPHATNGUOI", | ||
"OFFICE_NAME_PATTERN", | ||
"SEND_MESSAGE_API_URL_TELEGRAM", | ||
"MESSAGE_MARKDOWN_PATTERN", | ||
"RESOLUTION_LOCATION_MARKDOWN_PATTERN", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
...heck_phat_nguoi/modules/notify/message.py → src/check_phat_nguoi/notify/message.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
5 changes: 4 additions & 1 deletion
5
src/check_phat_nguoi/modules/setup_logger.py → src/check_phat_nguoi/utils/setup_logger.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters