Code cleanup

This commit is contained in:
Noah Campbell 2013-10-01 19:59:35 -07:00
parent 19cb6c7819
commit 689cda1740
4 changed files with 10 additions and 11 deletions

View file

@ -1,8 +1,8 @@
package target
import (
"io"
"bytes"
"io"
)
type InMemoryTarget struct {
@ -22,4 +22,3 @@ func (t *InMemoryTarget) Publish(label string, reader io.Reader) (err error) {
func (t *InMemoryTarget) Translate(label string) (dest string, err error) {
return label, nil
}

View file

@ -1,8 +1,8 @@
package transform
import (
"io"
"bytes"
"io"
)
type chain struct {