git-project-manager/internal/remotes/remote/remote_opts.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
}