mirror of
https://gitee.com/Doocs/md
synced 2025-04-29 17:37:18 +08:00
9 lines
257 B
TypeScript
9 lines
257 B
TypeScript
export const MP_HOST = `https://api.weixin.qq.com`
|
|
|
|
export function jsonResponse(value: any, init: ResponseInit = {}) {
|
|
return new Response(JSON.stringify(value), {
|
|
headers: { 'Content-Type': `application/json`, ...init.headers },
|
|
...init,
|
|
})
|
|
}
|