f69d9ee
1
2
3
4
5
6
7
8
9
10
from __future__ import annotations import sys from pathlib import Path APP_DIR = Path(__file__).resolve().parent / "app" sys.path.insert(0, str(APP_DIR)) import streamlitapp # noqa: F401 # Streamlit runs the module top-level code.