File size: 602 Bytes
a902f46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python3
"""
PodcastMcpGradio - Main Entry Point

This is the main entry point for the PodcastMcpGradio application.
It supports both local and Modal deployment modes.
"""

import os
import sys

# Add current directory to path for src imports
current_dir = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, current_dir)

# Import the actual app from src
from src.app import create_app, main, get_app

# Re-export for compatibility
__all__ = ["create_app", "main", "get_app"]

# For direct execution
if __name__ == "__main__":
    from src.app import run_local
    run_local()