# 배경 법적 대리인이 19세 미만이면 안돼서 만 나이를 구해서 체크 했다. # 코드 func GetAge(birthDate string) int64 { birthMonth, _ := time.Parse("01", birthDate[4:6]) birthDay, _ := time.Parse("02", birthDate[7:]) birthYear, _ := strconv.Atoi(birthDate[:4]) now := time.Now() age := now.Year() - birthYear // 생일이 지나지 않았을 경우 나이에서 1을 빼줌 if now.Month() < birthMonth.Month() || (now.Month() == birthMonth.Month() && now.Day() < birth..