lib-cvdata/teaching.go

42 lines
1.1 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 TeachingType struct {
Auth AuthInfoType `yaml:"auth" json:"auth"`
Date string `yaml:"date" json:"date"`
Title string `yaml:"title" json:"title"`
Org string `yaml:"org" json:"org"`
Location string `yaml:"location" json:"location"`
Description []string `yaml:"description" json:"description"`
}
type Teaching struct {
Teaching []TeachingType `yaml:"teaching" json:"teaching"`
}
type ShowTeachingType 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 (teaching *Teaching)Load(path string) ([]TeachingType, error) {
d,file,errpath := utils.DecoderFromFile(path)
if errpath != nil {
return teaching.Teaching, errpath
}
defer file.Close()
if err := d.Decode(&teaching); err != nil {
2024-09-16 19:35:48 +00:00
fmt.Printf("Decode: %v", err)
2022-01-10 13:01:15 +00:00
return teaching.Teaching, err
}
2024-09-16 19:35:48 +00:00
return teaching.Teaching, nil
2022-01-10 13:01:15 +00:00
}