primeiro commit

This commit is contained in:
2024-12-10 19:21:07 -03:00
commit 0aec8da266
6 changed files with 254 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
.PHONY: build run clean
build:
go build -o bin/file-checksum-monitor ./cmd/file-checksum-monitor
run: build
./bin/file-checksum-monitor
clean:
rm -rf bin/