From ea098ab11740fe4783694ff0122738b30e0c342f Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Wed, 22 May 2024 18:03:22 +0200 Subject: refactor: lint with golangci-lint --- internal/atom/atom.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/atom/atom.go') diff --git a/internal/atom/atom.go b/internal/atom/atom.go index f2ca4a9..37c53d9 100644 --- a/internal/atom/atom.go +++ b/internal/atom/atom.go @@ -4,10 +4,10 @@ import ( "encoding/xml" "time" - . "website/internal/config" + "website/internal/config" ) -func MakeTagURI(config Config, specific string) string { +func MakeTagURI(config config.Config, specific string) string { return "tag:" + config.OriginalDomain + "," + config.DomainStartDate + ":" + specific } @@ -35,7 +35,7 @@ type FeedEntry struct { XMLName xml.Name `xml:"entry"` Title string `xml:"title"` Link Link `xml:"link"` - Id string `xml:"id"` + ID string `xml:"id"` Updated time.Time `xml:"updated"` Summary string `xml:"summary,omitempty"` Content FeedContent `xml:"content"` -- cgit 1.4.1