From 7d62f464bb8bc0f6e69b859498e461dc081522c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20P=C3=A9rez?= Date: Mon, 16 Sep 2024 20:35:48 +0100 Subject: [PATCH] chore: formating --- education.go | 16 ++++++++-------- talks.go | 14 +++++++------- teaching.go | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/education.go b/education.go index bdda15c..4b22b5f 100644 --- a/education.go +++ b/education.go @@ -9,15 +9,15 @@ import ( type EducationType 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"` + Title string `yaml:"title" json:"title"` + Org string `yaml:"org" json:"org"` + Location string `yaml:"location" json:"location"` Cert string `yaml:"cert" json:"cert"` - Description []string `yaml:"description" json:"description"` - Tools []string `yaml:"tools" json:"tools"` + Description []string `yaml:"description" json:"description"` + Tools []string `yaml:"tools" json:"tools"` } type Education struct { - Education []EducationType `yaml:"education" json:"education"` + Education []EducationType `yaml:"education" json:"education"` } type ShowEducationType struct { Auth AuthInfoType `yaml:"auth" json:"auth"` @@ -36,8 +36,8 @@ func (education *Education)Load(path string) ([]EducationType, error) { } defer file.Close() if err := d.Decode(&education); err != nil { - fmt.Printf("Decode: %v", err) + fmt.Printf("Decode: %v", err) return education.Education, err } - return education.Education, nil + return education.Education, nil } diff --git a/talks.go b/talks.go index 5a02c60..794e174 100644 --- a/talks.go +++ b/talks.go @@ -9,13 +9,13 @@ import ( type TalksType 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"` + 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 Talks struct { - Talks []TalksType `yaml:"talks" json:"talks"` + Talks []TalksType `yaml:"talks" json:"talks"` } type ShowTalksType struct { @@ -34,8 +34,8 @@ func (talks *Talks)Load(path string) ([]TalksType, error) { } defer file.Close() if err := d.Decode(&talks); err != nil { - fmt.Printf("Decode: %v", err) + fmt.Printf("Decode: %v", err) return talks.Talks, err } - return talks.Talks, nil + return talks.Talks, nil } diff --git a/teaching.go b/teaching.go index b51bb43..6f5bad2 100644 --- a/teaching.go +++ b/teaching.go @@ -34,8 +34,8 @@ func (teaching *Teaching)Load(path string) ([]TeachingType, error) { } defer file.Close() if err := d.Decode(&teaching); err != nil { - fmt.Printf("Decode: %v", err) + fmt.Printf("Decode: %v", err) return teaching.Teaching, err } - return teaching.Teaching, nil + return teaching.Teaching, nil }