11 lines
186 B
Go
11 lines
186 B
Go
package remote
|
|
|
|
import "context"
|
|
|
|
// Generic options to be passed to any
|
|
// impelenter of the Remote interface
|
|
type RemoteQueryOpts struct {
|
|
Ctx context.Context
|
|
OwnerOnly bool
|
|
}
|