UNPKG

rsshub

Version:
9 lines (6 loc) 313 B
const utils = require('./utils'); module.exports = async (ctx) => { const url = `https://letterboxd.com/${ctx.params.username}/following/`; const title = `Letterboxd - following diary - ${ctx.params.username}`; ctx.state.data = await utils.getFollowingData(ctx, ctx.params.username, url, title); };