Add dosh update command
ci / test (push) Has been cancelled
ci / remote-bench (push) Has been cancelled

This commit is contained in:
Codex
2026-06-11 09:49:53 -04:00
parent da60b71984
commit 3ad8f95833
6 changed files with 62 additions and 1 deletions
+4
View File
@@ -44,6 +44,8 @@ impl Default for ServerConfig {
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ClientConfig {
pub update_repo: Option<String>,
pub update_port: Option<u16>,
pub server: String,
pub dosh_host: Option<String>,
pub ssh_auth_command: Option<String>,
@@ -59,6 +61,8 @@ pub struct ClientConfig {
impl Default for ClientConfig {
fn default() -> Self {
Self {
update_repo: None,
update_port: None,
server: "user@example.com".to_string(),
dosh_host: None,
ssh_auth_command: Some("~/.local/bin/dosh-auth".to_string()),