forked from mymmrac/telego
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
30 lines (26 loc) · 783 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
module github.com/mymmrac/telego
go 1.20
// Main
require (
github.com/fasthttp/router v1.4.20
github.com/goccy/go-json v0.10.2
github.com/valyala/fasthttp v1.50.0
)
// Testing
require (
github.com/joho/godotenv v1.5.1
github.com/stretchr/testify v1.8.4
go.uber.org/mock v0.3.0
)
// Indirect
require (
github.com/andybalholm/brotli v1.0.5 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/klauspost/compress v1.16.5 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/savsgio/gotils v0.0.0-20230208104028-c358bd845dee // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)