This commit is contained in:
Dev
2025-09-13 01:48:31 +03:00
commit b94789993d
7 changed files with 597 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
BINARY=fo
PKG=git.gostacks.org/iwasforcedtobehere/fo/cmd/fo
.PHONY: build tidy clean
build:
go build -o $(BINARY) $(PKG)
clean:
rm -f $(BINARY)
tidy:
go mod tidy