blob: 334c22716bed502958360472ee4d52a22bfcf202 [file] [log] [blame]
module basic-rpc {
namespace "urn:acme:yang:basic";
prefix "basic";
leaf my-id {
type uint8;
}
leaf my-name {
type string;
}
leaf my-status {
type boolean;
config false;
}
rpc do-something {
input {
leaf my-input {
type string;
}
}
output {
leaf my-output {
type string;
}
}
}
}