pwd.getUser = function (uuid, callback) {
  mongo.getCollection('users').findOne({ uuid })
    .then((v) => callback(undefined, v))
    .catch((e) => callback(e, undefined));
};