summaryrefslogtreecommitdiff
path: root/output/stdout.go
diff options
context:
space:
mode:
Diffstat (limited to 'output/stdout.go')
-rw-r--r--output/stdout.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/output/stdout.go b/output/stdout.go
deleted file mode 100644
index 5cb753e..0000000
--- a/output/stdout.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package output
-
-import (
- "fmt"
-
- "github.com/Shugyousha/stasher/work"
-)
-
-type StdoutOutput struct {
-}
-
-func (o *StdoutOutput) Output(w *work.Work) {
- fmt.Printf("%s\n", w.Data)
-}