cbd0adca91
Stateful FastAPI lab with contract packs, Compose/Helm, Docker Hub release targets, and Pulumi coverage across all Engine series (GET/POST/PUT/DELETE/HEAD).
10 lines
247 B
Python
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)
|