-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
32 lines (29 loc) · 1015 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
module github.com/opencars/bot
go 1.19
require (
github.com/golang/mock v1.5.0
github.com/jmoiron/sqlx v1.3.1
github.com/lib/pq v1.10.0
github.com/opencars/grpc v0.5.22
github.com/opencars/seedwork v0.0.4
github.com/opencars/toolkit v0.1.4
github.com/opencars/translit v0.1.2
github.com/stretchr/testify v1.7.0
google.golang.org/grpc v1.53.0
gopkg.in/tucnak/telebot.v2 v2.5.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/go-ozzo/ozzo-validation/v4 v4.3.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rs/zerolog v1.26.1 // indirect
golang.org/x/net v0.5.0 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/text v0.6.0 // indirect
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)