mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
refactor: Restructure source code folder
This way the location of certain classes should make more sense
This commit is contained in:
8
src/http/input/RequestParser.ts
Normal file
8
src/http/input/RequestParser.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import type { HttpRequest } from '../../server/HttpRequest';
|
||||
import { AsyncHandler } from '../../util/handlers/AsyncHandler';
|
||||
import type { Operation } from '../Operation';
|
||||
|
||||
/**
|
||||
* Converts an incoming HttpRequest to an Operation.
|
||||
*/
|
||||
export abstract class RequestParser extends AsyncHandler<HttpRequest, Operation> {}
|
||||
Reference in New Issue
Block a user