mirror of
https://github.com/kunkunsh/kunkun-ext-wol.git
synced 2025-04-03 18:06:43 +00:00
10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
import { expose } from "@kunkun/api/runtime/deno";
|
|
import { wakeOnLan } from "@hk/wol/deno";
|
|
import type { API } from "../src/types.ts";
|
|
|
|
expose({
|
|
wakeOnLan: (mac: string, ip: string, port?: number) => {
|
|
return wakeOnLan(mac, ip, port);
|
|
},
|
|
} satisfies API);
|