all repos — website @ ea098ab11740fe4783694ff0122738b30e0c342f

My website

refactor: lint with golangci-lint

Alan Pearce
commit

ea098ab11740fe4783694ff0122738b30e0c342f

parent

aef028263229d8acda28b8e657413f7e9c187833

1 file changed, 3 insertions(+), 3 deletions(-)

changed files
M internal/atom/atom.gointernal/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"`