tastypie
Version:
Tastypie is a webservice API framework for Node.js based on Django's Tastypie Framework. It provides a convenient, yet powerful and highly customizable, abstraction for creating REST-style interfaces
15 lines (13 loc) • 421 B
JavaScript
/*jshint laxcomma: true, smarttabs: true, node: true*/
;
/**
* Default set of joi validators for use with tastypie's validation hooks
* @module tastypie/lib/resource/validator
* @author Eric Satterwhite
* @since 0.0.1
* @requires tastypie/lib/resource/validator/querystring
* @requires tastypie/lib/resource/validator/oid
*/
var querystring = require('./querystring')
;
exports.query = querystring;