mirror of
https://github.com/LittleChest/Dohna-NS.git
synced 2026-05-06 22:44:50 +08:00
15 lines
266 B
JavaScript
15 lines
266 B
JavaScript
import handler from "./common";
|
|
|
|
export default {
|
|
fetch: async (request, env) =>
|
|
handler(
|
|
request,
|
|
env.DNS,
|
|
env.API,
|
|
env.IPV4_PREFIX,
|
|
env.IPV6_PREFIX,
|
|
env.CONCURRENT,
|
|
request.headers.get("cf-connecting-ip"),
|
|
),
|
|
};
|