8 lines
264 B
Go
8 lines
264 B
Go
|
|
package kinesis_consumer
|
||
|
|
|
||
|
|
// noopStore implements the storage interface with discard
|
||
|
|
type noopStore struct{}
|
||
|
|
|
||
|
|
func (noopStore) SetCheckpoint(_, _, _ string) error { return nil }
|
||
|
|
func (noopStore) GetCheckpoint(_, _ string) (string, error) { return "", nil }
|