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