import Router from 'koa-router' import axios from 'axios' import { ding } from './urlConfig.js' const router = Router() // 主内容 router.get('/ding', async (ctx, next) => { const response = await axios.get(ding) ctx.body = response.data }) export default router