7 lines
144 B
Go
7 lines
144 B
Go
|
|
package connector
|
||
|
|
|
||
|
|
// Used to map the attributres of the data being sent through the Kinesis stream
|
||
|
|
type Model interface {
|
||
|
|
ToString() string
|
||
|
|
}
|