graph-common
Version:
Open Graph API core js lib
32 lines (24 loc) • 505 B
JavaScript
(function() {
var RouterSchema;
RouterSchema = (function() {
function RouterSchema() {}
RouterSchema.schema = {
name: 'Router',
definition: {
name: {
type: String,
required: true,
unique: true
},
require: {
type: String,
required: true
},
configuration: {}
}
};
RouterSchema.methods = {};
return RouterSchema;
})();
module.exports = RouterSchema;
}).call(this);