Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Bible ¶
type Bible struct { OldTestament Testament NewTestament Testament // contains filtered or unexported fields }
Bible contains the old testament and new testament
type Book ¶
type Book struct { Title string `json:"title"` BookNumber uint8 `json:"bookNumber"` Chapters []Chapter `json:"Chapters"` }
Book represents a single book in a testament of the bible
type SearchNode ¶ added in v0.2.0
func (*SearchNode) String ¶ added in v0.2.0
func (s *SearchNode) String() string
String creates a string representation for the SearchNode, ex. Genesis 1:1
type Testament ¶
type Testament struct {
Books []Book
}
Testament consists of a list of books, old vs. new
func (*Testament) GetBookNames ¶
GetBookNames creates a list of all book titles for the testament
func (*Testament) GetChapter ¶
GetChapter obtains a chapter within the provided book by its number
Click to show internal directories.
Click to hide internal directories.