forked from TrueCloudLab/frostfs-node
11 lines
154 B
Go
11 lines
154 B
Go
|
package util
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
)
|
||
|
|
||
|
// ServerStream is an interface of server-side stream v2.
|
||
|
type ServerStream interface {
|
||
|
Context() context.Context
|
||
|
}
|