Documentation ¶
Overview ¶
Package source retrieves source code
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Repository ¶
type Repository struct { // Name or repo Name string // Local path where repo is stored Path string // URL from which repo was retrieved URL string }
Repository is the source repository
type Source ¶
type Source interface { // Fetch repo from a url Fetch(url string) (*Repository, error) // Commit and upload repo Commit(*Repository) error // String the sourcerer String() string }
Source retrieves source code
Click to show internal directories.
Click to hide internal directories.