Documentation
¶
Index ¶
Constants ¶
View Source
const GitRevision = "revision"
Variables ¶
View Source
var ( // ErrUnsupported is returned for an unsupported seed source. ErrUnsupported = errors.New("Not supported") )
Functions ¶
This section is empty.
Types ¶
type Git ¶
type Git struct {
// contains filtered or unexported fields
}
func (*Git) MetadataRead ¶
Metadata for this source.
func (*Git) MetadataWrite ¶
MetadataWrite for this source.
type Source ¶
type Source interface {
// String representation of this source
String() string
// Load from URI into dest.
Load(dest string) error
// Metadata for this source.
MetadataRead(mdDir string) (string, error)
// MetadataWrite for this source.
MetadataWrite(mdDir string) error
}
Source defines the interface for keep track of volume driver mounts.
Click to show internal directories.
Click to hide internal directories.