blob: fdd4a43f30ac0a673ade714b154ee3f94bdd76cf [file] [log] [blame]
module hello {
yang-version 1;
namespace "urn:params:xml:ns:yang:hello";
prefix "hello";
revision "2015-01-05" {
description "Initial revision of hello model";
}
rpc hello-world {
input {
leaf x {
type string;
}
}
output {
leaf greeting {
type string;
}
}
}
rpc hello-second {
input {
leaf x {
type string;
}
}
output {
leaf greeting {
type string;
}
}
}
}