Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit b9760e7

Browse files
committed
Add scaffolding for kubectl style get command
1 parent c59bca6 commit b9760e7

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

packages/jumpstarter-cli-client/jumpstarter_cli_client/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
from .client_lease import client_lease
1010
from .client_login import client_login
1111
from .client_shell import client_shell
12+
from .get import get
1213
from jumpstarter.common.utils import env
1314

1415

@@ -27,6 +28,7 @@ def j():
2728
client.cli()(standalone_mode=True)
2829

2930

31+
client.add_command(get)
3032
client.add_command(create_client_config)
3133
client.add_command(delete_client_config)
3234
client.add_command(list_client_configs)
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import asyncclick as click
2+
3+
4+
@click.group()
5+
def get():
6+
"""
7+
Display one or many resources
8+
"""
9+
pass

0 commit comments

Comments
 (0)