github.com/tilt-dev/tilt@v0.33.15-0.20240515162809-0a22ed45d8a0/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) {})