2025-01-28 11:15:42 -05:00

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);
},
});