diff options
author | 2025-04-25 14:58:40 +0530 | |
---|---|---|
committer | 2025-04-25 14:58:40 +0530 | |
commit | 741aefb2d307e95cd2c756620e5d886a06b7c4de (patch) | |
tree | 6246316c15d1c8a71ae10c81557bb9ffbe813522 /backend/go.mod | |
parent | 7b9fe4639cafbcc35c860e23a20a2c0d2e29283d (diff) | |
download | finance-741aefb2d307e95cd2c756620e5d886a06b7c4de.tar.gz finance-741aefb2d307e95cd2c756620e5d886a06b7c4de.tar.bz2 finance-741aefb2d307e95cd2c756620e5d886a06b7c4de.zip |
finance/backend: feat: wrote unit/integration tests for core API endpoints
Diffstat (limited to 'backend/go.mod')
-rw-r--r-- | backend/go.mod | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/backend/go.mod b/backend/go.mod index 1de9ec7..54ed412 100644 --- a/backend/go.mod +++ b/backend/go.mod @@ -7,6 +7,7 @@ require ( github.com/bytedance/sonic/loader v0.2.4 // indirect github.com/cloudwego/base64x v0.1.5 // indirect github.com/cloudwego/iasm v0.2.0 // indirect + github.com/davecgh/go-spew v1.1.1 // indirect github.com/gabriel-vasile/mimetype v1.4.8 // indirect github.com/gin-contrib/cors v1.7.5 // indirect github.com/gin-contrib/sse v1.0.0 // indirect @@ -27,9 +28,13 @@ require ( github.com/klauspost/cpuid/v2 v2.2.10 // indirect github.com/leodido/go-urn v1.4.0 // indirect github.com/mattn/go-isatty v0.0.20 // indirect + github.com/mattn/go-sqlite3 v1.14.22 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pelletier/go-toml/v2 v2.2.3 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/stretchr/objx v0.5.2 // indirect + github.com/stretchr/testify v1.10.0 // indirect github.com/twitchyliquid64/golang-asm v0.15.1 // indirect github.com/ugorji/go/codec v1.2.12 // indirect golang.org/x/arch v0.15.0 // indirect @@ -41,5 +46,6 @@ require ( google.golang.org/protobuf v1.36.6 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect gorm.io/driver/postgres v1.5.11 // indirect + gorm.io/driver/sqlite v1.5.7 // indirect gorm.io/gorm v1.25.12 // indirect ) |