package profile
type Profile struct {
Name string
X string
Linkedin string
Wantedly string
}
func NewProfile() Profile {
return Profile{
Name: "Kota Yagi",
X: "https://x.com/88888888_kota",
Linkedin: "https://www.linkedin.com/in/yagikota",
Wantedly: "https://www.wantedly.com/id/kouta_yagi_b",
}
}
used in practice
others