import { Elysia } from 'elysia'; export const testController = new Elysia({ name: 'testController' }) .get('/', () => ({ message: '验证性接口' })) .get('/hello', () => ({ message: 'hello' }));