19 lines
320 B
Go
19 lines
320 B
Go
package protocol
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Identifier string
|
|
|
|
type Protocol interface {
|
|
Identifier() Identifier
|
|
Available(ctx context.Context, addr string) (Operations, error)
|
|
Operations(addr string) Operations
|
|
}
|
|
|
|
type Operations interface {
|
|
Connect(ctx context.Context) error
|
|
Close(ctx context.Context) error
|
|
}
|