blob: 9ace8556584dabf8c66924a6fa12e82d7028fc2a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | 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/http"
	_ "github.com/Shugyousha/stasher/output/stdout"
)
 |