diff --git a/pkg/protocol/rules/HelloRule.go b/pkg/protocol/rules/HelloRule.go new file mode 100644 index 0000000..6f294a0 --- /dev/null +++ b/pkg/protocol/rules/HelloRule.go @@ -0,0 +1,16 @@ +package rules + +import "_StorBackEnd/pkg/protocol" + +type HelloRule struct { +} + +func (h HelloRule) Create(cmd string, pattern string) protocol.IProtocol { + //TODO implement me + panic("implement me") +} + +func (h HelloRule) execute(data string) { + //TODO implement me + panic("implement me") +}