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"` }