github.com/grahambrereton-form3/tilt@v0.10.18/internal/store/reducer.go (about) 1 package store 2 3 import "context" 4 5 type Reducer func(ctx context.Context, engineState *EngineState, action Action) 6 7 var EmptyReducer = Reducer(func(ctx context.Context, s *EngineState, action Action) {})