mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-12 09:10:35 +08:00
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
declare const self: Worker;
|
|
|
|
import { buildInternalReverseChnCIDR } from '../build-internal-reverse-chn-cidr';
|
|
|
|
self.onmessage = async () => {
|
|
const stat = await buildInternalReverseChnCIDR();
|
|
postMessage(stat);
|
|
};
|