mirror of
https://github.com/riccorik/cursor-auto-icloud.git
synced 2026-08-29 01:53:20 +08:00
15 lines
427 B
Python
15 lines
427 B
Python
"""
|
|
This file is kept for backward compatibility.
|
|
The actual implementation has moved to src/utils/logger.py.
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
|
|
# Add the current directory to the path so we can import the src package
|
|
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
# Import from the new location
|
|
from src.utils.logger import *
|
|
|
|
# No need to initialize anything here, as the src/utils/logger.py already initializes itself |