17 lines
288 B
Go
17 lines
288 B
Go
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")
|
|
}
|