-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathconstellation.go
71 lines (69 loc) · 1.38 KB
/
constellation.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
// This file is part of the guanguans/id-validator.
// (c) guanguans <ityaozm@gmail.com>
// This source file is subject to the MIT license that is bundled.
package data
// Constellation 星座信息
func Constellation() [13]map[string]string {
return [13]map[string]string{
1: {
"name": "水瓶座",
"start_date": "01-20",
"end_date": "02-18",
},
2: {
"name": "双鱼座",
"start_date": "02-19",
"end_date": "03-20",
},
3: {
"name": "白羊座",
"start_date": "03-21",
"end_date": "04-19",
},
4: {
"name": "金牛座",
"start_date": "04-20",
"end_date": "05-20",
},
5: {
"name": "双子座",
"start_date": "05-21",
"end_date": "06-21",
},
6: {
"name": "巨蟹座",
"start_date": "06-22",
"end_date": "07-22",
},
7: {
"name": "狮子座",
"start_date": "07-23",
"end_date": "08-22",
},
8: {
"name": "处女座",
"start_date": "08-23",
"end_date": "09-22",
},
9: {
"name": "天秤座",
"start_date": "09-23",
"end_date": "10-23",
},
10: {
"name": "天蝎座",
"start_date": "10-24",
"end_date": "11-22",
},
11: {
"name": "射手座",
"start_date": "11-23",
"end_date": "12-21",
},
12: {
"name": "摩羯座",
"start_date": "12-22",
"end_date": "01-19",
},
}
}