Files
psalms/internal/config/config.go
github_username_here 7355158ff9 refactoring with internal
2026-03-24 18:39:59 +01:00

22 lines
280 B
Go

package config
type Chapter struct{
Verses []string
Number int
}
type Book struct{
Chapters []Chapter
Version string
Name string
}
type Cfg struct{
Book Book
ConfigPath string
YamlPath string
HtmlPath string
BookList map[string]int
ProperName map[string]struct{}
}