Last active
March 22, 2022 11:39
-
-
Save cp-sumi-k/8a2562e384aa65715692a7e0ded20cdb to your computer and use it in GitHub Desktop.
https://medium.com/canopas/automation-dynamic-sitemap-generation-with-golang-api-584f6c53ea9c - sitemap-1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package sitemap | |
type URL struct { | |
XMLName xml.Name `xml:"url"` | |
Loc string `xml:"loc"` | |
ChangeFreq string `xml:"changefreq"` | |
LastMod string `xml:"lastmod"` | |
Priority string `xml:"priority"` | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment