File size: 377 Bytes
aaa6e1c
 
 
 
 
 
 
 
 
 
 
 
 
97e9fd7
aaa6e1c
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
Streamlit Cloud Deployment Entry Point
This file serves as the main entry point for Streamlit Cloud deployment
"""

import streamlit as st
import sys
import os

# Add the ui directory to the path
sys.path.append(os.path.join(os.path.dirname(__file__), 'ui'))

# Import and run the main Streamlit app
from ui.streamlit_app import main

if __name__ == "__main__":
    main()