11 lines
163 B
Go
11 lines
163 B
Go
package ownwire_sdk
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Conn interface {
|
|
WriteText(ctx context.Context, s string) error
|
|
ReadText(ctx context.Context) (string, error)
|
|
}
|