fix: add handler indexes

This commit is contained in:
Andy Burke 2025-06-22 14:11:11 -07:00
parent b3a399cf7a
commit c45d0a4658
2 changed files with 14 additions and 0 deletions

9
handlers/index.ts Normal file
View file

@ -0,0 +1,9 @@
import * as markdown from './markdown.ts';
import * as static_files from './static.ts';
import * as typescript from './typescript.ts';
export default {
markdown,
static: static_files,
typescript
};

5
tests/handlers/index.ts Normal file
View file

@ -0,0 +1,5 @@
import * as foo from './foo.ts';
export default {
foo
};