File size: 310 Bytes
d1da800
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import streamlit as st
import os
import sys

# Add the current directory to the Python path
sys.path.append(os.path.dirname(os.path.abspath(__file__)))

# Import the main app
from app.main import main, sidebar_navigation, load_css

if __name__ == "__main__":
    load_css()
    sidebar_navigation()
    main()