This commit is contained in:
Slipstream 2025-05-06 19:10:46 -06:00
parent bfb21cd169
commit ca4e5a568b
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ from utils import reload_script
import settings_manager # Import the settings manager import settings_manager # Import the settings manager
from db import mod_log_db # Import the new mod log db functions from db import mod_log_db # Import the new mod log db functions
import command_customization # Import command customization utilities import command_customization # Import command customization utilities
from discordbot.global_bot_accessor import set_bot_instance # Import the new accessor from global_bot_accessor import set_bot_instance # Import the new accessor
# Import the unified API service runner and the sync API module # Import the unified API service runner and the sync API module
import sys import sys

View File

@ -6,7 +6,7 @@ import asyncio
from dotenv import load_dotenv from dotenv import load_dotenv
from typing import Dict from typing import Dict
from discordbot.global_bot_accessor import get_bot_instance # Import the accessor from global_bot_accessor import get_bot_instance # Import the accessor
# Load environment variables # Load environment variables
load_dotenv(dotenv_path=os.path.join(os.path.dirname(__file__), '.env')) load_dotenv(dotenv_path=os.path.join(os.path.dirname(__file__), '.env'))