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

24 lines
412 B
Go
Raw Normal View History

2024-07-30 14:28:39 +02:00
package v2
import (
"context"
"forge.cadoles.com/cadoles/go-emlid/reach/client/protocol"
)
type Operations struct {
addr string
}
// 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{}