StoreBackEnd/pkg/protocol/IProtocol.go

11 lines
317 B
Go
Raw Normal View History

package protocol
2022-02-15 11:30:23 +01:00
// IProtocol Représentation abstraite d'un protocol
type IProtocol interface {
// Create Création d'une instance de cette structure.
2022-02-15 11:30:23 +01:00
Create(cmd string, pattern string) IProtocol
// Permet de vérifier la validité d'une donnée censée suivre les règles d'un protocol
execute(data string)
}