()
| 12 | module.exports = (Branch = (function () { |
| 13 | Branch = class Branch extends CocoModel { |
| 14 | static initClass () { |
| 15 | this.className = 'Branch' |
| 16 | this.schema = schema |
| 17 | this.prototype.urlRoot = '/db/branches' |
| 18 | } |
| 19 | } |
| 20 | Branch.initClass() |
| 21 | return Branch |