comline/tests/units/protocol/args.ids
2023-06-24 04:16:35 +01:00

13 lines
193 B
Plaintext

namespace units.protocols_args
protocol Proposals {
function call(Args)
function call(kind: u8, name: str, message: str)
}
struct Args {
kind: u8
name: str
message: str
}