mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-17 07:18:24 +08:00
11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
const r = await fetch(
|
|
`https://registry-direct.npmmirror.com/@gkd-kit/subscription/sync`,
|
|
{
|
|
method: 'PUT',
|
|
},
|
|
);
|
|
console.log(await r.json());
|
|
console.log(`同步 npmmirror 成功`);
|
|
|
|
export {};
|