-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
yangyile
committed
Nov 30, 2024
1 parent
72f9b1d
commit 569f69a
Showing
5 changed files
with
68 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
*.a | ||
*.so | ||
*.exe | ||
*.pyc | ||
*.log | ||
*.dll | ||
*.out | ||
*.key | ||
_test | ||
*.test | ||
*.cert | ||
*.exe~ | ||
go.work | ||
.Trash-* | ||
.DS_Store | ||
go.work.sum | ||
main.out.bin | ||
*gitignore*secrets* | ||
*gitignore*outputs* | ||
ehthumbs.db | ||
Thumbs.db | ||
.gitkeep | ||
.vscode/ | ||
*.dylib | ||
vendor/ | ||
.idea/ | ||
*.err | ||
*.swp | ||
_obj | ||
tmp/ | ||
bin/ | ||
tags | ||
*.DB | ||
*.db | ||
*.o | ||
*~ |
File renamed without changes.
File renamed without changes.
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,26 +1,25 @@ | ||
module github.com/orzkratos/erkkratos | ||
|
||
go 1.22.6 | ||
go 1.22.8 | ||
|
||
require ( | ||
github.com/go-kratos/kratos/v2 v2.8.0 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/yyle88/erero v1.0.11 | ||
github.com/go-kratos/kratos/v2 v2.8.2 | ||
github.com/stretchr/testify v1.10.0 | ||
github.com/yyle88/erero v1.0.14 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/yyle88/mutexmap v1.0.4 // indirect | ||
github.com/yyle88/zaplog v0.0.10 // indirect | ||
github.com/yyle88/mutexmap v1.0.8 // indirect | ||
github.com/yyle88/zaplog v0.0.16 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
go.uber.org/zap v1.27.0 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
golang.org/x/text v0.18.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240924160255-9d4c2d233b61 // indirect | ||
google.golang.org/grpc v1.67.0 // indirect | ||
google.golang.org/protobuf v1.34.2 // indirect | ||
golang.org/x/sys v0.27.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 // indirect | ||
google.golang.org/grpc v1.68.0 // indirect | ||
google.golang.org/protobuf v1.35.2 // indirect | ||
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
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