8 lines
154 B
Go
8 lines
154 B
Go
|
|
package connector
|
||
|
|
|
||
|
|
// Used to store the data being sent through the Kinesis stream
|
||
|
|
type Record interface {
|
||
|
|
ToDelimitedString() string
|
||
|
|
ToJson() []byte
|
||
|
|
}
|