refactoring project structure

This commit is contained in:
github_username_here
2026-02-28 17:21:56 +01:00
parent 92b7c5ecab
commit 8fdf7c190a
5 changed files with 13 additions and 0 deletions

12
internal/models/yaml.go Normal file
View File

@@ -0,0 +1,12 @@
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"`
}