initial commit

This commit is contained in:
2022-05-26 02:08:50 +01:00
commit 8ccc3e303e
8 changed files with 257 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM golang:1.16
WORKDIR /go/src/app
COPY . .
RUN go get -d -v ./...
RUN go install -v ./...
CMD ["sus"]