FakeNews / app.py
100rabhsah
app.py modified
330f66b
raw
history blame contribute delete
239 Bytes
import sys
from pathlib import Path
# Add src directory to Python path
src_path = Path(__file__).parent / "src"
sys.path.append(str(src_path))
# Import and run the main app
from src.app import main
if __name__ == "__main__":
main()