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,5 +1,5 @@
import type { Patch } from '../../ldp/http/Patch';
import type { ResourceIdentifier } from '../../ldp/representation/ResourceIdentifier';
import { AsyncHandler } from '../../util/AsyncHandler';
import { AsyncHandler } from '../../util/handlers/AsyncHandler';
export abstract class PatchHandler extends AsyncHandler<{identifier: ResourceIdentifier; patch: Patch}> {}