Files
bouncer/internal/store/observable.go

12 lines
147 B
Go
Raw Normal View History

package store
import "context"
type Change interface {
Change()
}
type Observable interface {
Changes(ctx context.Context, fn func(Change))
}