diff --git a/protocols/protocolStrategy.go b/protocols/protocolStrategy.go index 55fd83b..29da640 100644 --- a/protocols/protocolStrategy.go +++ b/protocols/protocolStrategy.go @@ -1,7 +1,10 @@ package protocols -import "beelzebub/parser" +import ( + "beelzebub/parser" + "beelzebub/tracer" +) type ServiceStrategy interface { - Init(beelzebubServiceConfiguration parser.BeelzebubServiceConfiguration) error + Init(beelzebubServiceConfiguration parser.BeelzebubServiceConfiguration, tracer tracer.Tracer) error }