refactor: move task, error and testing utils to separte repo; apply gofumpt

This commit is contained in:
yusing
2025-09-27 13:41:50 +08:00
parent 5043ef778f
commit 6776f20332
203 changed files with 696 additions and 2800 deletions

View File

@@ -2,6 +2,8 @@ package atomic
import "sync/atomic"
type Bool = atomic.Bool
type Int32 = atomic.Int32
type Int64 = atomic.Int64
type (
Bool = atomic.Bool
Int32 = atomic.Int32
Int64 = atomic.Int64
)