Files

11 lines
163 B
Go
Raw Permalink Normal View History

package ownwire_sdk
import (
"context"
)
type Conn interface {
WriteText(ctx context.Context, s string) error
ReadText(ctx context.Context) (string, error)
}