Skip to content

Commit f35ee69

Browse files
committed
Refactor API and utils module structure
Moved discord_api.py and notion_api.py to the apis/ directory, and utils.py to utils/utils.py. Updated import statements in main.py to reflect new module locations for improved project organization.
1 parent f403bba commit f35ee69

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed
File renamed without changes.
File renamed without changes.

main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
from datetime import datetime
44
import azure.functions as func
55

6-
from notion_api import get_all_notion_pages
7-
from discord_api import send_discord_message
8-
from utils import is_active_mac_member, is_today_their_birthday
6+
from apis.discord_api import send_discord_message
7+
from apis.notion_api import get_all_notion_pages
8+
from utils.utils import is_active_mac_member, is_today_their_birthday
99
from zoneinfo import ZoneInfo
1010

1111
# for local testing
File renamed without changes.

0 commit comments

Comments
 (0)