Files
beelzebub/protocols/protocolStrategy.go
2022-05-08 20:49:53 +02:00

8 lines
161 B
Go

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