mrme77/dfars-assistant
0
1"""Hugging Face Spaces entry point for the DFARS Streamlit app."""2 3import sys4from pathlib import Path5 6APP_DIR = Path(__file__).parent / "app"7sys.path.insert(0, str(APP_DIR))8 9from streamlit_app import main10 11 12if __name__ == "__main__":13 main()14 