Files
psalms/internal/models/yaml.go
2026-03-24 18:39:59 +01:00

18 lines
287 B
Go

package models
type Yaml struct {
Strophes []Strophe `yaml:"strophes"`
}
type Strophe struct {
Lines []Line `yaml:"lines"`
}
type Line struct {
Verse int `yaml:"verse"`
Text string `yaml:"text"`
Who string `yaml:"who"`
To string `yaml:"to"`
Of string `yaml:"Of"`
}