Sort exported fields alphabetically

This commit is contained in:
Harlow Ward 2014-11-15 17:19:08 -08:00
parent 7c631ba8c0
commit 4d00c430cf

View file

@ -3,6 +3,6 @@ package connector
// Transformer is used to transform data (byte array) to a Record for
// processing in the application.
type Transformer interface {
ToRecord(data []byte) interface{}
FromRecord(r interface{}) []byte
ToRecord(data []byte) interface{}
}