Files
inecs cbd0adca91 Initial release of the oVirt/RHV Engine API simulator.
Stateful FastAPI lab with contract packs, Compose/Helm, Docker Hub release
targets, and Pulumi coverage across all Engine series (GET/POST/PUT/DELETE/HEAD).
2026-07-18 04:49:28 +03:00

10 lines
247 B
Python

"""oVirt / RHV Engine API simulator domain package."""
__all__ = ["mount_ovirt_routes"]
def mount_ovirt_routes(*args, **kwargs): # lazy re-export
from app.ovirt.mount import mount_ovirt_routes as _mount
return _mount(*args, **kwargs)