-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs:optimize logger caller * docs:optimize go.sum * style:gofumpt && go mod tidy * style:gofumpt && go mod tidy * style: use gofumpt --------- Co-authored-by: kinggo <[email protected]>
- Loading branch information
1 parent
65c0e8e
commit 3417f3d
Showing
10 changed files
with
414 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,51 @@ | ||
module github.com/hertz/hello | ||
replace github.com/apache/thrift => github.com/apache/thrift v0.13.0 | ||
|
||
go 1.21 | ||
|
||
replace github.com/apache/thrift => github.com/apache/thrift v0.13.0 | ||
|
||
require ( | ||
github.com/apache/thrift v0.0.0-00010101000000-000000000000 | ||
github.com/bytedance/go-tagexpr/v2 v2.9.11 | ||
github.com/cloudwego/hertz v0.7.2 | ||
github.com/go-redis/redis/v8 v8.11.5 | ||
github.com/hertz-contrib/cors v0.1.0 | ||
github.com/hertz-contrib/gzip v0.0.1 | ||
github.com/hertz-contrib/logger/accesslog v0.0.0-20231114100706-b7a03fd68876 | ||
github.com/hertz-contrib/logger/logrus v1.0.0 | ||
github.com/hertz-contrib/pprof v0.1.1 | ||
github.com/kr/pretty v0.3.1 | ||
gopkg.in/natefinch/lumberjack.v2 v2.2.1 | ||
gorm.io/driver/mysql v1.5.2 | ||
gorm.io/gorm v1.25.5 | ||
) | ||
|
||
require ( | ||
github.com/andeya/ameda v1.5.3 // indirect | ||
github.com/andeya/goutil v1.0.1 // indirect | ||
github.com/bytedance/gopkg v0.0.0-20220413063733-65bf48ffb3a7 // indirect | ||
github.com/bytedance/sonic v1.8.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect | ||
github.com/cloudwego/netpoll v0.5.0 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/felixge/fgprof v0.9.3 // indirect | ||
github.com/fsnotify/fsnotify v1.5.4 // indirect | ||
github.com/go-sql-driver/mysql v1.7.0 // indirect | ||
github.com/golang/protobuf v1.5.0 // indirect | ||
github.com/google/pprof v0.0.0-20211214055906-6f57359322fd // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/klauspost/cpuid/v2 v2.0.9 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/nyaruka/phonenumbers v1.0.55 // indirect | ||
github.com/rogpeppe/go-internal v1.9.0 // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
github.com/tidwall/gjson v1.14.4 // indirect | ||
github.com/tidwall/match v1.1.1 // indirect | ||
github.com/tidwall/pretty v1.2.0 // indirect | ||
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect | ||
golang.org/x/arch v0.0.0-20210923205945-b76863e36670 // indirect | ||
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
) |
Oops, something went wrong.