Files
beelzebub/protocols/protocolStrategy.go
2022-05-09 23:18:48 +02:00

11 lines
208 B
Go

package protocols
import (
"beelzebub/parser"
"beelzebub/tracer"
)
type ServiceStrategy interface {
Init(beelzebubServiceConfiguration parser.BeelzebubServiceConfiguration, tracer tracer.Tracer) error
}