move example relay implementations to examples/ folder.

This commit is contained in:
fiatjaf
2023-05-18 09:48:56 -03:00
parent b2bf358789
commit 47b8ee106f
37 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
FROM golang:1.18
WORKDIR /go/src/app
COPY ./ .
RUN go get -d -v ./...
RUN go install -v ./...
RUN cd basic && make