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