Skip to content

Commit

Permalink
added to to-do
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoobia committed Jan 16, 2024
1 parent f04ac2d commit 02da0c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ The project is essentially a big wrapper for the [NodeJS HTTP Library](https://n
- :white_square_button: Validate if requests are secure (using https, which uses the TLS protocol)
- :white_check_mark: ~~Header manipulations~~
- :white_square_button: Support for other HTTP request methods besides GET & POST
- :white_square_button: Add request forwarding
- :white_square_button: Figure out how to support GraphQL

---

Expand Down
4 changes: 2 additions & 2 deletions lib/server.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import * as http from 'http';
import ConsumeResponse from './wrapper/response';
import ConsumeRequest from './wrapper/request';
import security from './security/securityMiddleware';
import {
ConsumeServer,
Controller,
Expand All @@ -11,8 +13,6 @@ import {
StatusCodes,
ConsumeRoute
} from './@types';
import ConsumeRequest from './wrapper/request';
import security from './security/securityMiddleware';
import { isMiddleware } from './util/function';
import { parseUrlTokens } from './data/inbound';

Expand Down

0 comments on commit 02da0c8

Please sign in to comment.