mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 17:48:15 +08:00
* fix(route)(twitter): quote ignored in web API * refactor: migrate to v2 Signed-off-by: Rongrong <i@rong.moe>
8 lines
212 B
JavaScript
8 lines
212 B
JavaScript
// const config = require('@/config').value;
|
|
// const devApiImpl = require('./developer-api/user');
|
|
const webApiImpl = require('./web-api/media');
|
|
|
|
module.exports = async (ctx) => {
|
|
await webApiImpl(ctx);
|
|
};
|