Init project

This commit is contained in:
morrigan
2019-10-30 15:02:03 +01:00
parent b08ea40075
commit 8fb80913f3
10 changed files with 3429 additions and 0 deletions

3
src/encrypt.ts Normal file
View File

@ -0,0 +1,3 @@
export function encrypt() {
return "Encrypt world";
}

8
src/index.ts Normal file
View File

@ -0,0 +1,8 @@
import { encrypt } from './encrypt';
const tag = '/noise/1.0.0';
export {
tag,
encrypt,
}