This repository has been archived on 2024-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
Wireguard-tools.js/index.mjs
Matheus Sampaio Queiroga a399f89350
Migrate tests to node test and Add key gen in node
I'm adding key generation to pure Javascript, port of `keygen-html`.

I'm also migrating the mocha tests to the Node tests runner.

I solved a typescript typing problem

add gitea CI/CD

Gitlab CI/CD and Github Actions update test
2024-01-14 15:18:29 -03:00

14 lines
220 B
JavaScript

import * as __wg from "./src/index.js";
export const {
constants,
key,
key_experimental,
wgQuick,
wginterface,
getConfig,
setConfig,
listDevices,
deleteInterface,
} = __wg;
export default __wg.default;