diff --git a/model/Profile.go b/model/Profile.go deleted file mode 100644 index 259a971..0000000 --- a/model/Profile.go +++ /dev/null @@ -1,17 +0,0 @@ -package model - -import "strconv" - -type Profile struct { - Name string - Age int - Marry string - Constellation string - Height int - Weight int - Salary string -} - -func (p Profile) String() string { - return p.Name + " " + p.Marry + strconv.Itoa(p.Age) + "olds " + strconv.Itoa(p.Height) + "cm " + strconv.Itoa(p.Weight) + "kg " -}