From 428870d055a70fb4d5b886c113a726a0fd5d794d Mon Sep 17 00:00:00 2001 From: kekskurse Date: Mon, 28 Feb 2022 16:26:40 +0100 Subject: [PATCH] Stuff --- Readme.md | 8 ++++++++ cmd/sample-client/main.go | 1 + 2 files changed, 9 insertions(+) create mode 100644 Readme.md create mode 100644 cmd/sample-client/main.go diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..8a3e375 --- /dev/null +++ b/Readme.md @@ -0,0 +1,8 @@ +# KeksVPN +Wireguard Software, contains + +## wgfuncs (pkg) +Simple to use go Lib to create a wireguard device and connect it to ither peers + +## sample-server and sample-client (cmd) +Applications to test wgfuncs with, sample-server starts a wireguard server and a rest api to create new peers. sampleclient use that server to create a new connection without any user input. \ No newline at end of file diff --git a/cmd/sample-client/main.go b/cmd/sample-client/main.go new file mode 100644 index 0000000..85f0393 --- /dev/null +++ b/cmd/sample-client/main.go @@ -0,0 +1 @@ +package main \ No newline at end of file