first version

This commit is contained in:
Jay
2019-05-15 18:09:36 +08:00
commit 1275619fa0
10 changed files with 365 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
.PHONY: clean build
build:
GOOS=linux go build -o convert-webp -ldflags "-s -w" .
clean:
rm -rf convert-webp && go clean