summaryrefslogtreecommitdiff
path: root/actions/src/connection/protocol.rs
blob: 2cebe79085eae078494e65b05004ae4d7fb9ddd2 (plain)
1
2
3
4
5
6
7
use serde::{Deserialize, Serialize};

#[derive(Default, Clone, Serialize, Deserialize)]
pub struct RemoteActionInvoke {
    pub action_name: String,
    pub action_args_json: String,
}