mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
import { type AppController } from '@/app.ts';
|
|
|
|
const reportsController: AppController = (c) => {
|
|
return c.json('Reports endpoint');
|
|
};
|
|
|
|
export { reportsController };
|