Files
2026-01-11 11:18:22 +00:00

7 lines
90 B
Go

package atomic
type Reader[T any] interface {
Get() T
Subscribe(fn func(T)) func() T
}