Initial commit

This commit is contained in:
r 2019-12-13 18:08:26 +00:00
commit 5e4da01c3a
43 changed files with 3429 additions and 0 deletions

14
Makefile Normal file
View file

@ -0,0 +1,14 @@
.POSIX:
GO=go
#GOFLAGS=-mod=vendor
all: web
PHONY:
web: main.go PHONY
$(GO) build $(GOFLAGS) -o web main.go
run: web
./web