diff options
Diffstat (limited to 'internal/atom/atom.go')
-rw-r--r-- | internal/atom/atom.go | 6 |
1 files changed, 3 insertions, 3 deletions
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"` |