2022-02-20 11:33:47 +01:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
// IProtocolReader Représentation abstraite d'un protocol
|
|
|
|
type IProtocolWriter interface {
|
2022-02-22 08:47:03 +01:00
|
|
|
// GetCmd Permet de récupérer le nom de la commande
|
2022-02-20 12:35:05 +01:00
|
|
|
GetCmd() string
|
2022-02-20 11:33:47 +01:00
|
|
|
|
2022-02-22 08:47:03 +01:00
|
|
|
// Execute Permet de vérifier la validité d'une donnée censée suivre les règles d'un protocol
|
2022-02-22 09:35:44 +01:00
|
|
|
Execute(argsData ...string) (string, bool)
|
2022-02-20 11:33:47 +01:00
|
|
|
}
|