Add boilerplate frontend_configurations controller

This commit is contained in:
Alex Gleason
2023-06-10 23:10:27 -05:00
parent 39b75d7f95
commit 009747105d
2 changed files with 10 additions and 0 deletions

View File

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