package
Version:
v0.0.0-...-f698437
Opens a new window with list of versions in this module.
Published: Mar 21, 2022
License: MIT
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Book struct {
XMLName xml.Name `xml:"book"`
Title string `xml:"title"`
Chapter Chapter `xml:"chapter"`
}
type Chapter struct {
XMLName xml.Name `xml:"chapter"`
Chap int32 `xml:"chap"`
Verses Verses `xml:"verses"`
}
type Passage struct {
XMLName xml.Name `xml:"bible"`
Book Book `xml:"book"`
}
type Verse struct {
XMLName xml.Name `xml:"verse"`
Number int32 `xml:"number"`
Title string `xml:"title,omitempty"`
Text string `xml:"text"`
}
type Verses struct {
XMLName xml.Name `xml:"verses"`
Verse []Verse `xml:"verse"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.