initial upload

This commit is contained in:
Luxferre
2024-09-14 14:41:59 +03:00
commit 9f04abf49c
118 changed files with 1080 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
LDFLAGS = -s -w
GOFLAGS = -trimpath
SOURCES = server.go twitch.go youtube.go
BIN = streamgoose
all: $(SOURCES)
go mod tidy
go build -o $(BIN) $(GOFLAGS) -ldflags "$(LDFLAGS)" $(SOURCES)
clean:
rm $(BIN)