1use borsh::{BorshDeserialize, BorshSerialize};
23#[derive(BorshSerialize, BorshDeserialize)]
4pub struct CallHandlerArgs {
5pub escrow_index: u8,
6/// This is raw instruction data, it could include discriminator + args
7 /// or can be in any other custom format
8pub data: Vec<u8>,
9}