mirror of
https://github.com/kunkunsh/kunkun-ext-wol.git
synced 2025-04-04 10:26:41 +00:00
9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
import { expose } from "@kunkun/api/runtime/deno";
|
|
import { wakeOnLan } from "@hk/wol/deno";
|
|
|
|
expose({
|
|
wakeOnLan: (mac: string, ip: string, port: number) => {
|
|
wakeOnLan(mac, ip, port);
|
|
},
|
|
});
|