11 lines
280 B
Go
11 lines
280 B
Go
package protocol
|
|
|
|
// IProtocolWriter 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 créer une règle à envoyer
|
|
Execute(argsData ...string) (string, bool)
|
|
}
|