mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 04:47:40 +03:00
Fix bad group usages
This commit is contained in:
parent
ec1df651e8
commit
96bef0733f
4 changed files with 40 additions and 26 deletions
|
@ -2,6 +2,7 @@ package task
|
|||
|
||||
import "context"
|
||||
|
||||
// Deprecated: Use Group instead
|
||||
func Run(ctx context.Context, tasks ...func() error) error {
|
||||
var group Group
|
||||
for _, task := range tasks {
|
||||
|
@ -13,6 +14,7 @@ func Run(ctx context.Context, tasks ...func() error) error {
|
|||
return group.Run(ctx)
|
||||
}
|
||||
|
||||
// Deprecated: Use Group instead
|
||||
func Any(ctx context.Context, tasks ...func(ctx context.Context) error) error {
|
||||
var group Group
|
||||
for _, task := range tasks {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue