blob: c1968a3cd19251779268ef8503db03fb9fa1eaed [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;
}
}
}
}