♻️ refactor: split src into internal packages and cmd

This commit is contained in:
2026-07-16 23:51:39 +07:00
parent 2e320b03f3
commit a05d6bb7eb
28 changed files with 1355 additions and 1328 deletions
+3 -3
View File
@@ -6,10 +6,10 @@ pre-commit:
run: test -z "$(gofmt -l {staged_files})"
vet:
glob: "*.go"
run: go vet ./src/...
run: go vet ./...
lint:
glob: "*.go"
run: golangci-lint run ./src/...
run: golangci-lint run ./...
test:
glob: "*.go"
run: go test ./src/...
run: go test ./...