* Create base Interfaces for Pipeline * Add first base implementations for Pipeline * Add initial test for core functionality
7 lines
202 B
Go
7 lines
202 B
Go
package connector
|
|
|
|
// Transformer is used to transform data from a Record (byte array) to the data model for
|
|
// processing in the application.
|
|
type Transformer interface {
|
|
ToModel(data []byte) Model
|
|
}
|