var inherits = require('util').inherits;
var Resource = require('./Resource');
function JSMock(path) {
Resource.call(this, path);
this.id = null;
}
inherits(JSMock, Resource);
JSMock.__proto__ = Resource;
JSMock.prototype.type = 'JSMock';
module.exports = JSMock;