-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.go
76 lines (68 loc) · 1.66 KB
/
data.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package main
// Experience is a struct that holds the data for the experience section
type Experience struct {
Company string
Position string
Website string
StartDate string
EndDate string
Highlights []string
}
// Education is a struct that holds the data for the education section
type Education struct {
Institution string
Area string
StudyType string
StartDate string
EndDate string
GPA string
}
// Skill is a struct that holds the data for the skills section
type Skill struct {
Name string
Level string
Keywords []string
}
// Project is a struct that holds the data for the projects section
type Project struct {
Name string
Description string
Link string
StartDate string
EndDate string
}
// Award is a struct that holds the data for the awards section
type Award struct {
Title string
Date string
Awarder string
Summary string
}
// Certificate is a struct that holds the data for the certificates section
type Certificate struct {
Title string
Date string
License string
}
// Language is a struct that holds the data for the languages section
type Language struct {
Language string
Fluency string
}
// UserData is a struct that holds the data for the resume
type UserData struct {
FirstName string
LastName string
Email string
Phone string
Website string
Location string
Profile string
Experience []Experience
Education []Education
Skills []Skill
Projects []Project
Awards []Award
Certificates []Certificate
Languages []Language
}