(ctx context.Context, streamID StreamID)
| 37 | } |
| 38 | |
| 39 | func WithStreamID(ctx context.Context, streamID StreamID) context.Context { |
| 40 | return context.WithValue(ctx, streamIDContextKey{}, streamID) |
| 41 | } |
| 42 | |
| 43 | type WorkspaceUpdatesProvider interface { |
| 44 | io.Closer |
no outgoing calls
no test coverage detected