mirror of
https://github.com/yusing/godoxy.git
synced 2025-07-21 03:54:02 +02: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.
7 lines
114 B
Go
7 lines
114 B
Go
package atomic
|
|
|
|
import "sync/atomic"
|
|
|
|
type Bool = atomic.Bool
|
|
type Int32 = atomic.Int32
|
|
type Int64 = atomic.Int64
|