git-project-manager/internal/remotes/remote/remote_opts.go

11 lines
186 B
Go
Raw Normal View History

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
}