CoolFace
Apppublic

mrme77/dfars-assistant

sourceHugging Faceupdated 1mo agoView on Hugging Face
0likes
app.py14 linesDownload Raw Back to root
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