batuta/batuta_contracts.rs
1// Batuta-specific contract macros (analyze, transpile)
2// These are batuta pipeline contracts not in the provable-contracts catalog.
3
4macro_rules! contract_pre_analyze {
5 () => {{}};
6 ($input:expr) => {{
7 let _input = &$input;
8 }};
9}
10
11macro_rules! contract_pre_transpile {
12 () => {{}};
13 ($input:expr) => {{
14 let _input = &$input;
15 }};
16}