RSSHub/lib/v2/dribbble/popular.js

11 lines
322 B
JavaScript

const utils = require('./utils');
module.exports = async (ctx) => {
const timeframe = ctx.params.timeframe;
const url = `https://dribbble.com/shots/popular${timeframe ? `?timeframe=${timeframe}` : ''}`;
const title = 'Dribbble - Popular Shots';
ctx.state.data = await utils.getData(ctx, url, title);
};