Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
412799755 committed Oct 26, 2023
1 parent a625cde commit 0d236e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions core/controller-decorator/src/model/HTTPRequest.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
import { Request } from 'undici';
export class HTTPRequest extends Request {}
import * as undici from 'undici';
export class HTTPRequest extends undici.Request {}
4 changes: 2 additions & 2 deletions core/controller-decorator/src/model/HTTPResponse.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
import { Response } from 'undici';
export class HTTPResponse extends Response {}
import * as undici from 'undici';
export class HTTPResponse extends undici.Response {}

0 comments on commit 0d236e3

Please sign in to comment.