-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathgo.mod
27 lines (23 loc) · 871 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
module github.com/bots-go-framework/bots-fw
go 1.22.3
//replace github.com/strongo/app => ../../strongo/app
//replace github.com/strongo/i18n => ../../strongo/i18n
//replace github.com/bots-go-framework/bots-fw-store => ../bots-fw-store
require (
github.com/bots-go-framework/bots-fw-store v0.10.0
github.com/bots-go-framework/bots-go-core v0.0.3
github.com/dal-go/dalgo v0.18.1
github.com/pquerna/ffjson v0.0.0-20190930134022-aa0246cd15f7
github.com/stretchr/testify v1.10.0
github.com/strongo/gamp v0.0.1
github.com/strongo/i18n v0.6.1
github.com/strongo/logus v0.2.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/strongo/random v0.0.1 // indirect
github.com/strongo/slice v0.3.1 // indirect
github.com/strongo/validation v0.0.7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)