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

Function create_opts

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

Helper to build IntentCreateOptions with session info for tests.

(title: &str)

Source from the content-addressed store, hash-verified

766
767 /// Helper to build IntentCreateOptions with session info for tests.
768 fn create_opts(title: &str) -> IntentCreateOptions {
769 IntentCreateOptions {
770 title: title.to_string(),
771 priority: None,
772 assignee: None,
773 labels: vec![],
774 session_id: Some("test-session".to_string()),
775 turn_id: Some(1),
776 }
777 }
778
779 /// Helper to build IntentCreateOptions for a specific session/turn.
780 fn create_opts_with_session(

Calls

no outgoing calls