StoreBackEnd/pkg/protocol/IProtocolWriter.go

11 lines
329 B
Go
Raw Normal View History

package protocol
// IProtocolReader Représentation abstraite d'un protocol
type IProtocolWriter interface {
// GetCmd Permet de récupérer le nom de la commande
GetCmd() string
// Execute Permet de vérifier la validité d'une donnée censée suivre les règles d'un protocol
Execute(argsData ...string) (string, bool)
}