| 5 | ) |
| 6 | |
| 7 | type Presentations []struct { |
| 8 | Name string `yaml:"name"` |
| 9 | Description string `yaml:"description"` |
| 10 | Video string `yaml:"video"` |
| 11 | Date time.Time `yaml:"date"` |
| 12 | Slides string `yaml:"slides"` |
| 13 | Language string `yaml:"language"` |
| 14 | License string `yaml:"license"` |
| 15 | Presenters []struct { |
| 16 | Name string `yaml:"name"` |
| 17 | Github string `yaml:"github"` |
| 18 | } |
| 19 | Event struct { |
| 20 | Name string `yaml:"name"` |
| 21 | URL string `yaml:"url"` |
| 22 | } |
| 23 | Projects []string `yaml:"projects"` |
| 24 | Tags []string `yaml:"tags"` |
| 25 | Repos []string `yaml:"repos"` |
| 26 | } |
nothing calls this directly
no outgoing calls
no test coverage detected