Files
beelzebub/protocols/protocolStrategy.go

11 lines
208 B
Go
Raw Normal View History

2022-05-08 20:49:53 +02:00
package protocols
import (
"beelzebub/parser"
"beelzebub/tracer"
)
2022-05-08 20:49:53 +02:00
type ServiceStrategy interface {
Init(beelzebubServiceConfiguration parser.BeelzebubServiceConfiguration, tracer tracer.Tracer) error
2022-05-08 20:49:53 +02:00
}