python-code-review-env / inference.py
uvpatel7271's picture
added a modularity and updations
cd5c208
raw
history blame contribute delete
187 Bytes
#!/usr/bin/env python3
"""Root validator entrypoint."""
from __future__ import annotations
import sys
from app.env.runner import main
if __name__ == "__main__":
sys.exit(main())