1
0
Fork 0
forked from navos/sheepd

shell

This commit is contained in:
JMARyA 2025-05-05 14:56:02 +02:00
parent 3af7b892b2
commit f10c7df262
Signed by untrusted user: jmarya
GPG key ID: 901B2ADDF27C2263
10 changed files with 276 additions and 326 deletions

View file

@ -1,6 +1,6 @@
use sheepctl_core::{
args::{DeviceCommands, SheepctlArgs, SheepctlCommand},
cmd::{list_devices, login},
cmd::{interactive_shell, list_devices, login},
};
mod api;
@ -14,5 +14,6 @@ fn main() {
DeviceCommands::List(list_devices_command) => list_devices(list_devices_command),
},
SheepctlCommand::Login(login_command) => login(login_command),
SheepctlCommand::Shell(shell_command) => interactive_shell(shell_command),
}
}