BlobURL returns the URL for a blob in the raw content API.
(owner, repo, sha, path string)
| 53 | |
| 54 | // BlobURL returns the URL for a blob in the raw content API. |
| 55 | func (c *Client) commitURL(owner, repo, sha, path string) string { |
| 56 | return c.url.JoinPath(owner, repo, sha, path).String() |
| 57 | } |
| 58 | |
| 59 | type ContentOpts struct { |
| 60 | Ref string |