Skip to content
Merged
Show file tree
Hide file tree
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
20 changes: 20 additions & 0 deletions assets/icons/mast.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions crates/sing_project/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ pub trait SingProjectClient: Send + Sync {
async fn start_project(&self, project: &str) -> Result<ProjectStartResult>;
async fn stop_project(&self, project: &str) -> Result<ProjectStopResult>;
async fn list_specs(&self, _project: &str) -> Result<SpecBoard> {
anyhow::bail!("spec board is unavailable from this project client")
anyhow::bail!("spec board is unavailable from this Sail client")
}
async fn agent_status(&self, _project: &str) -> Result<ProjectAgentStatus> {
anyhow::bail!("agent status is unavailable from this project client")
anyhow::bail!("agent status is unavailable from this Sail client")
}
async fn agent_log(&self, _project: &str, _tail: u32) -> Result<AgentLog> {
anyhow::bail!("agent log is unavailable from this project client")
anyhow::bail!("agent log is unavailable from this Sail client")
}
async fn agent_report(&self, _project: &str) -> Result<AgentReport> {
anyhow::bail!("agent report is unavailable from this project client")
anyhow::bail!("agent report is unavailable from this Sail client")
}
}

Expand Down
Loading