Implement quote service #2

Merged
krendelhoff merged 2 commits from phase-2-quote into master 2025-08-22 16:06:32 +03:00
2 changed files with 9 additions and 1 deletions
Showing only changes of commit 8d8291e5b3 - Show all commits

6
go.mod
View file

@ -2,4 +2,8 @@ module hash-of-wisdom
go 1.24.3
require github.com/stretchr/testify v1.10.0 // indirect
require (
github.com/go-resty/resty/v2 v2.16.5 // indirect
github.com/stretchr/testify v1.10.0 // indirect
golang.org/x/net v0.33.0 // indirect
)

4
go.sum
View file

@ -1,2 +1,6 @@
github.com/go-resty/resty/v2 v2.16.5 h1:hBKqmWrr7uRc3euHVqmh1HTHcKn99Smr7o5spptdhTM=
github.com/go-resty/resty/v2 v2.16.5/go.mod h1:hkJtXbA2iKHzJheXYvQ8snQES5ZLGKMwQ07xAwp/fiA=
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=