Skip to main content

soma_codemode/runner_drive/
artifact.rs

1use crate::types::CodeModeExecutedCall;
2
3pub fn artifact_call(path: &str) -> CodeModeExecutedCall {
4    CodeModeExecutedCall {
5        id: "artifact::write".to_string(),
6        params: Some(serde_json::json!({"path": path})),
7        result: None,
8    }
9}