12 lines
260 B
Go
12 lines
260 B
Go
package streaming
|
|
|
|
import "cosmossdk.io/log"
|
|
|
|
// Context is an interface used by an App to pass context information
|
|
// needed to process store streaming requests.
|
|
type Context interface {
|
|
BlockHeight() int64
|
|
Logger() log.Logger
|
|
StreamingManager() Manager
|
|
}
|