mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 15:48:11 -05:00
7 lines
190 B
CoffeeScript
7 lines
190 B
CoffeeScript
|
CocoModel = require './CocoModel'
|
||
|
|
||
|
module.exports = class ProductModel extends CocoModel
|
||
|
@className: 'Product'
|
||
|
@schema: require 'schemas/models/product.schema'
|
||
|
urlRoot: '/db/products'
|