summaryrefslogtreecommitdiff
path: root/conf/init.go
blob: f7d176165fddf20762db3b36d0182d4deb81abf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package conf

import (
	// Initialize the different modules. By importing them in this
	// way, their constructors are registered in the registry.
	_ "github.com/Shugyousha/stasher/input/http"
	_ "github.com/Shugyousha/stasher/input/stdin"

	_ "github.com/Shugyousha/stasher/filter/http"
	_ "github.com/Shugyousha/stasher/filter/str"

	_ "github.com/Shugyousha/stasher/output/stdout"
)