mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-17 21:31:29 +03:00
7 lines
96 B
Go
7 lines
96 B
Go
|
package entity
|
||
|
|
||
|
type StreamedEntity[EntityT Interface] struct {
|
||
|
Entity EntityT
|
||
|
Err error
|
||
|
}
|