dataops-env / server /__main__.py
visheshrathi's picture
Upload folder using huggingface_hub
f89b1ac verified
raw
history blame contribute delete
142 Bytes
"""Run the API server from the repo root: ``uv run python -m server``."""
from server.app import main
if __name__ == "__main__":
main()