refactor: Move handlers into subfolder.

This commit is contained in:
Ruben Verborgh
2021-01-26 22:36:58 +01:00
committed by Joachim Van Herwegen
parent d7256fb20a
commit eb1440851a
29 changed files with 43 additions and 41 deletions

View File

@@ -1,4 +1,4 @@
import { AsyncHandler } from '../../src/util/AsyncHandler';
import { AsyncHandler } from '../../src/util/handlers/AsyncHandler';
export class StaticAsyncHandler<TOut> extends AsyncHandler<any, TOut> {
private readonly canHandleStatic: boolean;