-
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.
feat: add convenient way to execute a func
- Loading branch information
Showing
10 changed files
with
925 additions
and
49 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,22 +1,28 @@ | ||
module github.com/zhenzou/executors | ||
|
||
go 1.21 | ||
go 1.23.0 | ||
|
||
require ( | ||
github.com/aptible/supercronic v0.2.26 | ||
github.com/dubbogo/timer v0.0.0-20210901143602-5dacc5984f43 | ||
github.com/panjf2000/ants/v2 v2.8.1 | ||
github.com/stretchr/testify v1.8.1 | ||
github.com/aptible/supercronic v0.2.32 | ||
github.com/dubbogo/timer v0.1.0 | ||
github.com/panjf2000/ants/v2 v2.10.0 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/zyedidia/generic v1.2.1 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dubbogo/gost v1.14.0 // indirect | ||
github.com/k0kubun/pp v3.0.1+incompatible // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/segmentio/fasthash v1.0.3 // indirect | ||
go.uber.org/atomic v1.7.0 // indirect | ||
golang.org/x/exp v0.0.0-20220218215828-6cf2b201936e // indirect | ||
go.uber.org/atomic v1.11.0 // indirect | ||
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.