Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
from jumpstarter_driver_composite.client import CompositeClient
from jumpstarter_driver_network.adapters import FabricAdapter, NovncAdapter

from jumpstarter.client.decorators import driver_click_group


class QemuClient(CompositeClient):
@property
Expand Down Expand Up @@ -43,10 +41,8 @@ def shell(self):
yield conn

def cli(self):
@driver_click_group(self)
def base():
"""QEMU virtual machine operations"""
pass
# Get the base group from CompositeClient which includes all child commands
base = super().cli()

@base.group()
def resize():
Expand Down
Loading