Added new features to the project

This commit is contained in:
ajaysi
2025-06-30 07:49:48 +05:30
parent bbe56a364d
commit b21cbb68da
48 changed files with 19774 additions and 1889 deletions

View File

@@ -0,0 +1,14 @@
import streamlit as st
import sys
import os
from pathlib import Path
# Add the current directory to the path
sys.path.append(str(Path(__file__).parent))
# Import the dashboard module
from dashboard import main
# Run the dashboard
if __name__ == "__main__":
main()