* Create base Interfaces for Pipeline * Add first base implementations for Pipeline * Add initial test for core functionality
6 lines
144 B
Go
6 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
|
|
}
|