From 3715e752ba590639a9972095ca1e91133c490977 Mon Sep 17 00:00:00 2001 From: Benjamin Date: Tue, 15 Feb 2022 11:37:31 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20de=20la=20r=C3=A8gle=20HelloRule.go=20(?= =?UTF-8?q?non-impl=C3=A9ment=C3=A9e)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/protocol/rules/HelloRule.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pkg/protocol/rules/HelloRule.go 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") +}