2024-01-15 20:39:35 +00:00
|
|
|
package remote
|
|
|
|
|
|
|
|
import "context"
|
|
|
|
|
2024-01-16 17:48:42 +00:00
|
|
|
// Generic options to be passed to any
|
|
|
|
// impelenter of the Remote interface
|
2024-01-15 20:39:35 +00:00
|
|
|
type RemoteQueryOpts struct {
|
|
|
|
Ctx context.Context
|
|
|
|
OwnerOnly bool
|
|
|
|
}
|