UNPKG

197 BJavaScriptView Raw
1'use strict';
2
3var capiV2 = require('./utils/capi-v2');
4
5module.exports = function(opts) {
6 var uuid = opts.uuid;
7 return capiV2({
8 uuid: uuid,
9 path: '/lists/' + uuid,
10 type: 'unknown'
11 });
12};