initial, broken

This commit is contained in:
2020-03-24 13:32:35 -07:00
parent 471ac01bbd
commit 9ac46046cb
12 changed files with 421 additions and 0 deletions

14
cmd/server/main.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import (
"os"
"git.eeqj.de/sneak/hntransparencylog/hn"
)
var Version string
var Buildarch string
func main() {
os.Exit(hn.RunServer(Version, Buildarch))
}