From a68ee305caba012960096c190c9ebe1c7c1b1c1c Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 9 May 2022 23:18:48 +0200 Subject: [PATCH] Configured tracer into protocolStrategy.go --- protocols/protocolStrategy.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 }