1
0
Fork 0
arangodb/js/apps/system/aardvark/templates/model.js.tmpl

16 lines
275 B
Cheetah

(function () {
'use strict';
var Foxx = require('org/arangodb/foxx'),
Joi = require('joi'),
Model;
Model = Foxx.Model.extend({
schema: {
// Describe the attributes with Joi here
'_key': Joi.string(),
}
});
exports.Model = Model;
}());