UNPKG

make-shift-brew-ui

Version:

Common User Interface for the Brewfactory projects, modified for MakeShift Aleworks

26 lines (20 loc) 322 B
var logResource = require('../resources/log'); /* * Find * * @method find */ exports.find = function () { // Promise return logResource.find(); }; /* * Find one * * @method findOne * @param {Object} options */ exports.findOne = function (options) { // Promise return logResource.findOne(options); };