Files
git-project-manager/internal/remotes/remote/remote_opts.go
T
2024-01-16 12:48:42 -05:00

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
}