Skip to content

Commit 0c6acac

Browse files
committed
ignore lint
1 parent 3e523b7 commit 0c6acac

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

opsmngr/link.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@ type Link struct {
2222
Href string `json:"href,omitempty"`
2323
}
2424

25+
//nolint:all // this is a temp method and will be called later
2526
func (l *Link) getHrefURL() (*url.URL, error) {
2627
return url.Parse(l.Href)
2728
}
2829

30+
//nolint:all // this is a temp method and will be called later
2931
func (l *Link) getHrefQueryParam(param string) (string, error) {
3032
hrefURL, err := l.getHrefURL()
3133
if err != nil {

0 commit comments

Comments
 (0)