Ajout de la règle HelloRule.go (non-implémentée)

This commit is contained in:
Benjamin Lejeune 2022-02-15 11:37:31 +01:00
parent 12aff7bfe2
commit 3715e752ba

View File

@ -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")
}