fix: add handler indexes
This commit is contained in:
parent
b3a399cf7a
commit
c45d0a4658
2 changed files with 14 additions and 0 deletions
9
handlers/index.ts
Normal file
9
handlers/index.ts
Normal 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
5
tests/handlers/index.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
import * as foo from './foo.ts';
|
||||
|
||||
export default {
|
||||
foo
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue