func init() { new := func(_ bool, _ publish.Transactions, _ *ucfg.Config) (protos.Plugin, error) { return &TestProtocol{}, nil } protos.Register("httpTest", new) protos.Register("mysqlTest", new) protos.Register("redisTest", new) httpProtocol = protos.Lookup("httpTest") redisProtocol = protos.Lookup("redisTest") mysqlProtocol = protos.Lookup("mysqlTest") }
func init() { protos.Register("cassandra", New) }
func init() { protos.Register("amqp", New) }
func init() { protos.Register("dns", New) }
func init() { protos.Register("thrift", New) }
func init() { protos.Register("memcache", New) }
func init() { protos.Register("pgsql", New) }
func init() { protos.Register("mongodb", New) }
func init() { protos.Register("http", New) }
func init() { protos.Register("redis", New) }
func init() { protos.Register("{{ cookiecutter.module }}", New) }