summaryrefslogtreecommitdiff
path: root/output/http/http.go
blob: 9caa1b9a78dde2d9c204c5a8e4389bd0bc0474a9 (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 http

import (
	"fmt"

	"github.com/Shugyousha/stasher/output"
	"github.com/Shugyousha/stasher/registry"
	"github.com/Shugyousha/stasher/work"
)

func init() {
	registry.Outputregistry["http"] = New
}

type HttpOutput struct {
}

func New(map[string]string) output.Output {
	return &HttpOutput{}
}

func (h *HttpOutput) Output(w *work.Work) {
	fmt.Printf("%s\n", w.Data)
}