Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zhzabcd
/
mscopilot
like
0
No application file
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cbb28aa
mscopilot
/
src
/
workers.ts
zhzabcd
Upload 21 files
eb11f84
verified
6 months ago
raw
Copy download link
history
blame
Safe
209 Bytes
import
{ bingPorxyWorker }
from
'./proxy/bingPorxyWorker'
;
export
default
{
async
fetch
(
request
:
Request
,
env
:
Env
,
ctx
:
ExecutionContext
):
Promise
<
Response
> {
return
bingPorxyWorker
(request, env);
}
};