go-emlid/reach/client/protocol/v2/operations.go

23 lines
399 B
Go

package v2
import (
"context"
"forge.cadoles.com/cadoles/go-emlid/reach/client/protocol"
)
type Operations struct {
}
// Close implements protocol.Operations.
func (o *Operations) Close() error {
panic("unimplemented")
}
// Connect implements protocol.Operations.
func (o *Operations) Connect(ctx context.Context) error {
panic("unimplemented")
}
var _ protocol.Operations = &Operations{}