Change Protocol.go to IProtocol.go
This commit is contained in:
parent
c878fe7a77
commit
8d9fdba613
@ -1,9 +1,9 @@
|
|||||||
package protocol
|
package protocol
|
||||||
|
|
||||||
// Protocol Représentation abstraite d'un protocol
|
// IProtocol Représentation abstraite d'un protocol
|
||||||
type Protocol interface {
|
type IProtocol interface {
|
||||||
// Create Création d'une instance de cette structure.
|
// Create Création d'une instance de cette structure.
|
||||||
Create(cmd string, pattern string) Protocol
|
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
|
// Permet de vérifier la validité d'une donnée censée suivre les règles d'un protocol
|
||||||
match(data string) bool
|
match(data string) bool
|
Loading…
Reference in New Issue
Block a user