Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorNoah Campbell <noahcampbell@gmail.com>2013-10-02 06:59:35 +0400
committerNoah Campbell <noahcampbell@gmail.com>2013-10-08 20:40:41 +0400
commit689cda17403ba752305f469fdcc385b7a31b0bdb (patch)
tree9babea429190300cb047eb1060e6722149055e1d /target
parent19cb6c7819baa0daa7c6d6f0c23481578171ead8 (diff)
Code cleanup
Diffstat (limited to 'target')
-rw-r--r--target/memory.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/target/memory.go b/target/memory.go
index f8a3d91e8..77437c162 100644
--- a/target/memory.go
+++ b/target/memory.go
@@ -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
}
-