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{}