Initial tests

This commit is contained in:
Xavier Henner
2019-07-08 16:36:56 +02:00
commit cdaf0dd68d
5 changed files with 231 additions and 0 deletions

7
main.go Normal file
View File

@@ -0,0 +1,7 @@
package main
func main() {
server := NewVPNServer(":4000")
go server.Run()
NewHTTPServer(":8080", server)
}