MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / create_opts

Function create_opts

atomic-repository/src/repository/vault_intent.rs:814–823  ·  view source on GitHub ↗

Helper to build IntentCreateOptions with session info for tests.

(title: &str)

Source from the content-addressed store, hash-verified

812
813 /// Helper to build IntentCreateOptions with session info for tests.
814 fn create_opts(title: &str) -> IntentCreateOptions {
815 IntentCreateOptions {
816 title: title.to_string(),
817 priority: None,
818 assignee: None,
819 labels: vec![],
820 session_id: Some("test-session".to_string()),
821 turn_id: Some(1),
822 }
823 }
824
825 /// Helper to build IntentCreateOptions for a specific session/turn.
826 fn create_opts_with_session(

Calls

no outgoing calls