trellis_cli/cli_contract.rs
1#[allow(dead_code)]
2/// Build the local participant contract used by the `trellis` CLI.
3pub fn cli_contract_manifest() -> trellis_contracts::ContractManifest {
4 trellis_cli_participant::contract::contract_manifest()
5}
6
7/// Render the canonical manifest JSON for the CLI participant contract.
8pub fn cli_contract_json() -> String {
9 trellis_cli_participant::contract::contract_json()
10}