lib-cvdata/talks.go

42 lines
1.0 KiB
Go
Raw Permalink Normal View History

2022-01-10 13:01:15 +00:00
package cvdata
import (
"fmt"
utils "github.com/jesusperez/datautils"
)
type TalksType struct {
Auth AuthInfoType `yaml:"auth" json:"auth"`
Date string `yaml:"date" json:"date"`
2024-09-16 19:35:48 +00:00
Title string `yaml:"title" json:"title"`
Org string `yaml:"org" json:"org"`
Location string `yaml:"location" json:"location"`
Description []string `yaml:"description" json:"description"`
2022-01-10 13:01:15 +00:00
}
type Talks struct {
2024-09-16 19:35:48 +00:00
Talks []TalksType `yaml:"talks" json:"talks"`
2022-01-10 13:01:15 +00:00
}
type ShowTalksType struct {
Auth AuthInfoType `yaml:"auth" json:"auth"`
Date bool `yaml:"date" json:"date"`
Title bool `yaml:"title" json:"title"`
Org bool `yaml:"org" json:"org"`
Location bool `yaml:"location" json:"location"`
Description bool `yaml:"description" json:"description"`
}
func (talks *Talks)Load(path string) ([]TalksType, error) {
d,file,errpath := utils.DecoderFromFile(path)
if errpath != nil {
return talks.Talks, errpath
}
defer file.Close()
if err := d.Decode(&talks); err != nil {
2024-09-16 19:35:48 +00:00
fmt.Printf("Decode: %v", err)
2022-01-10 13:01:15 +00:00
return talks.Talks, err
}
2024-09-16 19:35:48 +00:00
return talks.Talks, nil
2022-01-10 13:01:15 +00:00
}