18 lines
287 B
Go
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"`
|
|
}
|