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

13 lines
233 B
Go

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