File size: 454 Bytes
a27a4ef
 
c61fe48
a27a4ef
 
 
652106e
a27a4ef
c61fe48
c918263
 
a78aa96
a27a4ef
 
c9d8d4a
 
a27a4ef
a78aa96
 
a27a4ef
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python3
"""
Entry point for the Fantasy Draft Multi-Agent application.
"""

import os
import sys

# Add current directory to path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))

# Simple startup message
if os.getenv("SPACE_ID"):
    print("🤗 Running on Hugging Face Spaces...")
else:
    print("🖥️ Running locally...")

# Import and run the main app
from apps.app import main

if __name__ == "__main__":
    main()