blob: 5a4625b713fe3d88782e749da7f7563b3891e20f [file] [log] [blame]
package functional.tests
import grails.rest.RestfulController
/**
* Created by graemerocher on 02/01/2017.
*/
class ProductController extends RestfulController<Product> {
static responseFormats = ['json']
ProductController() {
super(Product)
}
}