comline/tests/units/protocol/args.ids

13 lines
193 B
Plaintext
Raw Normal View History

2023-06-15 07:10:20 -05:00
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
}