fix: commit go.sum and remove .sum from gitignore

The .sum exclusion was preventing version control of Go dependency checksums. Remove the pattern from .gitignore to allow go.sum to be committed while keeping generated binaries (.exe, .env, .db*) excluded.
This commit is contained in:
db123-test
2026-05-07 17:54:36 +03:30
parent eb8ba0eb74
commit bdc0d9beb2
2 changed files with 51 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,4 +1,3 @@
*.exe
*.env
*.sum
*.db*