streamed.go

1package entity
2
3type StreamedEntity[EntityT Interface] struct {
4	Entity EntityT
5	Err    error
6}