MCPcopy Index your code
hub / github.com/google/go-github / GetHTMLURL

Method GetHTMLURL

github/github-accessors.go:1490–1495  ·  view source on GitHub ↗

GetHTMLURL returns the HTMLURL field if it's non-nil, zero value otherwise.

()

Source from the content-addressed store, hash-verified

1488
1489// GetHTMLURL returns the HTMLURL field if it's non-nil, zero value otherwise.
1490func (a *App) GetHTMLURL() string {
1491 if a == nil || a.HTMLURL == nil {
1492 return ""
1493 }
1494 return *a.HTMLURL
1495}
1496
1497// GetID returns the ID field if it's non-nil, zero value otherwise.
1498func (a *App) GetID() int64 {

Callers 3

TestApp_GetHTMLURLFunction · 0.95
createPRFunction · 0.45

Calls

no outgoing calls

Tested by 2

TestApp_GetHTMLURLFunction · 0.76