-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpersonalData.go.dist
More file actions
46 lines (44 loc) · 836 Bytes
/
personalData.go.dist
File metadata and controls
46 lines (44 loc) · 836 Bytes
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
package main
import "github.com/coma-toast/ResumAPI/pkg/candidate"
func hideThis() {
// * this is just to make it easier to build a data item. Rename this to .go if needed
_ = candidate.Candidate{
Contact: candidate.Contact{
Name: "",
Address: "",
Email: "",
URLs: []string{},
},
Experience: []candidate.Experience{
{
Date: "",
Company: "",
Title: "",
Location: "",
Description: "",
Highlights: []string{},
},
},
Projects: []candidate.Project{
{
Date: "",
Name: "",
URL: "",
Description: "",
Highlights: []string{},
},
},
DevEnvs: []candidate.DevEnv{
{
Name: "",
Category: "",
URL: "",
},
},
Hobbies: []candidate.Hobby{
{
Name: "",
},
},
}
}