kinesis-consumer/model.go
Harlow Ward 06b40e6ed8 Base pipeline components
* Create base Interfaces for Pipeline
* Add first base implementations for Pipeline
* Add initial test for core functionality
2014-11-14 20:45:34 -08:00

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
}