9 lines
109 B
Go
9 lines
109 B
Go
|
package remote
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type RemoteQueryOpts struct {
|
||
|
Ctx context.Context
|
||
|
OwnerOnly bool
|
||
|
}
|