workspace.rs (705B)
1 use super::{ApprovalPolicy, OperationRole, OperationSpec, RiskLevel}; 2 3 pub const WORKSPACE_INIT: OperationSpec = operation!( 4 "workspace.init", 5 "radroots workspace init", 6 "workspace", 7 "workspace_init", 8 "WorkspaceInitRequest", 9 "WorkspaceInitResult", 10 "Initialize a local workspace/profile.", 11 Any, 12 true, 13 None, 14 Medium, 15 false, 16 true 17 ); 18 19 pub const WORKSPACE_GET: OperationSpec = operation!( 20 "workspace.get", 21 "radroots workspace get", 22 "workspace", 23 "workspace_get", 24 "WorkspaceGetRequest", 25 "WorkspaceGetResult", 26 "Read workspace/profile configuration and current context.", 27 Any, 28 false, 29 None, 30 Low, 31 false, 32 false 33 );