2016-02-11 15:00:58 -07:00

8 lines
142 B
JavaScript

exports.templateData = {
userInfo: function(done) {
setTimeout(function() {
done(null, {});
}, 600);
}
};