feat: define reports endpoint

This commit is contained in:
P. Reis
2024-05-01 20:38:30 -03:00
parent 5f5749db9b
commit e8088c9eed
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { type AppController } from '@/app.ts';
const reportsController: AppController = (c) => {
return c.json('Reports endpoint');
};
export { reportsController };