mirror of
https://github.com/yusing/godoxy.git
synced 2026-01-15 16:13:32 +01:00
- Introduced NotifyFunc type for customizable notification handling in tests. - Added Retries field to HealthCheckConfig for controlling notification thresholds. - Implemented tests for notification behavior under various health check scenarios.
8 lines
114 B
Go
8 lines
114 B
Go
package atomic
|
|
|
|
import "sync/atomic"
|
|
|
|
type Bool = atomic.Bool
|
|
type Int32 = atomic.Int32
|
|
type Int64 = atomic.Int64
|