blob: 9d66581858ae0b4e41072a9d5bf76d9624952f6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package stdout
import (
"fmt"
"github.com/Shugyousha/stasher/output"
"github.com/Shugyousha/stasher/registry"
"github.com/Shugyousha/stasher/work"
)
func init() {
registry.Outputregistry["stdout"] = New
}
type StdoutOutput struct {
}
func New(map[string]string) output.Output {
return &StdoutOutput{}
}
func (o *StdoutOutput) Output(w *work.Work) {
fmt.Printf("%s\n", w.Data)
}
|