Documentation ¶ Index ¶ type Client func NewClient() (*Client, error) func (c *Client) Clone(owner, repo string) error func (c *Client) ListDirectories() ([]*Directory, error) type Directory func (d *Directory) Path(full bool) string Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Client ¶ type Client struct { // contains filtered or unexported fields } func NewClient ¶ func NewClient() (*Client, error) func (*Client) Clone ¶ func (c *Client) Clone(owner, repo string) error func (*Client) ListDirectories ¶ func (c *Client) ListDirectories() ([]*Directory, error) type Directory ¶ type Directory struct { Owner string Repo string FullPath string } func (*Directory) Path ¶ func (d *Directory) Path(full bool) string Source Files ¶ View all Source files auth.goclient.goclone.godirectory.go Click to show internal directories. Click to hide internal directories.