Configured tracer into protocolStrategy.go

This commit is contained in:
Mario
2022-05-09 23:18:48 +02:00
parent b43d09ecf2
commit a68ee305ca

View File

@ -1,7 +1,10 @@
package protocols package protocols
import "beelzebub/parser" import (
"beelzebub/parser"
"beelzebub/tracer"
)
type ServiceStrategy interface { type ServiceStrategy interface {
Init(beelzebubServiceConfiguration parser.BeelzebubServiceConfiguration) error Init(beelzebubServiceConfiguration parser.BeelzebubServiceConfiguration, tracer tracer.Tracer) error
} }