1
0

remove connect and trace method

This commit is contained in:
2024-01-20 02:24:38 +01:00
parent 3aaecd8877
commit e55392d890

View File

@@ -240,7 +240,6 @@ Key | Type | Default Value
### Supported Methods
- `router.any(url, [...handlers])`
- `router.connect(url, [...handlers])`
- `router.delete(url, [...handlers])`
- `router.get(url, [...handlers])`
- `router.head(url, [...handlers])`
@@ -248,7 +247,6 @@ Key | Type | Default Value
- `router.patch(url, [...handlers])`
- `router.post(url, [...handlers])`
- `router.put(url, [...handlers])`
- `router.trace(url, [...handlers])`
#### `url` (string)
@@ -410,4 +408,4 @@ export default {
return router.handle(request, env, ctx)
}
}
```
```