Why wont this work?

This commit is contained in:
Dave Smith-Hayes 2024-03-03 22:18:58 -05:00
parent 0cd8840ac8
commit a36fff1e9d

View File

@ -12,6 +12,6 @@ app.get('/', async (c) => {
}); });
// Handlers // Handlers
app.route('/user', LoginHandler); app.route('/*', LoginHandler);
export default app; export default app;