diff --git a/lib/index.js b/lib/index.js index 0fc0c33..bc7b6e9 100644 --- a/lib/index.js +++ b/lib/index.js @@ -78,7 +78,8 @@ var app = { apiuse : './parsers/api_use.js', apiversion : './parsers/api_version.js', apisamplerequest : './parsers/api_sample_request.js', - apideprecated : './parsers/api_deprecated.js' + apideprecated : './parsers/api_deprecated.js', + apiprivate : './parsers/api_private.js', }, workers: { apierrorstructure : './workers/api_error_structure.js', diff --git a/lib/parsers/api_private.js b/lib/parsers/api_private.js new file mode 100644 index 0000000..864ff1b --- /dev/null +++ b/lib/parsers/api_private.js @@ -0,0 +1,16 @@ +var trim = require('../utils/trim'); + +function parse(content) { + content = trim(content); + + return content; +} + +/** + * Exports + */ +module.exports = { + parse : parse, + path : 'local', + method: 'insert' +};