diff --git a/core.go b/core.go index fe56534..52603bc 100644 --- a/core.go +++ b/core.go @@ -76,6 +76,7 @@ type DataCoreType struct { Profile []ProfileType `yaml:"profile" json:"profile"` Certifications []CertificationType `yaml:"certifications" json:"certifications"` Skills []SkillsType `yaml:"skills" json:"skills"` + SoftSkills []SkillsType `yaml:"soft_skills" json:"soft_skills"` Infra []SkillsType `yaml:"infra" json:"infra"` Sites []SitesType `yaml:"sites" json:"sites"` Langs []LangsType `yaml:"langs" json:"langs"` diff --git a/cv.go b/cv.go index 841e9eb..3c17f98 100644 --- a/cv.go +++ b/cv.go @@ -85,6 +85,8 @@ type ShowInfoType struct { Sites bool `yaml:"sites" json:"sites"` Skills bool `yaml:"skills" json:"skills"` Skills_itms bool `yaml:"skills_itms" json:"skills_itms"` + Soft_Skills bool `yaml:"soft_skills" json:"soft_skills"` + Soft_Skills_itms bool `yaml:"soft_skills_itms" json:"soft_skills_itms"` Infra bool `yaml:"infra" json:"infra"` Certs bool `yaml:"certs" json:"certs"` Langs bool `yaml:"langs" json:"langs"`