feat: 初步完成基礎功能

This commit is contained in:
2025-01-27 16:14:31 +08:00
parent 3ff5cbc14c
commit be2e45c4fc
4 changed files with 63 additions and 0 deletions

14
types.ts Normal file
View File

@@ -0,0 +1,14 @@
export interface IrequestData {
Request: {
Mode: string
URL: string
Headers: any
Body: string
}
Response: {
StatusCode: number
Headers: any
Body: string
}
Processed?: boolean
}