package
Version:
v0.0.0-...-c180764
Opens a new window with list of versions in this module.
Published: Jan 31, 2023
License: Apache-2.0
Opens a new window with license information.
Imports: 4
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Index struct {
XMLName xml.Name `xml:"sitemapindex"`
Sitemap []parts `xml:"sitemap"`
}
Index is a structure of <sitemapindex>
type Sitemap struct {
XMLName xml.Name `xml:":urlset"`
URL []URL `xml:":url"`
}
Sitemap is a structure of <sitemap>
type URL struct {
Loc string `xml:"loc"`
LastMod string `xml:"lastmod"`
ChangeFreq string `xml:"changefreq"`
Priority float32 `xml:"priority"`
}
URL is a structure of <url> in <sitemap>
Source Files
¶
Click to show internal directories.
Click to hide internal directories.