11 lines
204 B
Go
11 lines
204 B
Go
|
package cast
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type Client interface {
|
||
|
Load(ctx context.Context, url string) error
|
||
|
Unload(ctx context.Context) error
|
||
|
Status(ctx context.Context) (DeviceStatus, error)
|
||
|
Close() error
|
||
|
}
|