| 37 | } |
| 38 | |
| 39 | type modelPipeline struct { |
| 40 | ctx context.Context |
| 41 | cancel context.CancelFunc |
| 42 | pipelines eosc.Untyped[string, *Pipeline] |
| 43 | pullFn PullCallback |
| 44 | maxSize int |
| 45 | } |
| 46 | |
| 47 | func (m *modelPipeline) List() []*Pipeline { |
| 48 | return m.pipelines.List() |
nothing calls this directly
no outgoing calls
no test coverage detected