#[method]
Attribute macro for individual methods within a #[plexus::activation] impl block.
#[plexus::activation]
#[plexus::activation(namespace = "bash")] impl Bash { /// Execute a bash command #[plexus::method] async fn execute(&self, command: String) -> impl Stream<Item = BashEvent> { // ... } }