-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchris.go
More file actions
108 lines (107 loc) · 2.3 KB
/
chris.go
File metadata and controls
108 lines (107 loc) · 2.3 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package main
func getFantasyChris() *pctLeague {
return &pctLeague{
Teams: []*fantasyTeam{
{
Name: "Bobby Bonilla’s $1.2 million wtf",
Owner: "Sean",
teams: []string{HO, ATL, BO, CIN, SF, SE},
},
{
Name: "50 Shades of Sonny Gray",
Owner: "Harrison",
teams: []string{LAD, OAK, PHIL, CHIW, SD, DE},
},
{
Name: "Backyard_Baseball_2003.exe",
Owner: "Jake",
teams: []string{WA, MIN, MIL, AZ, TX, KC},
},
{
Name: "Beffballs",
Owner: "Beth",
teams: []string{MIN, TB, BO, CHIW, CO, MI},
},
{
Name: "Rum Tum Slugger",
Owner: "Kate",
teams: []string{CHIC, ATL, CL, CIN, PITT, SF},
},
{
Name: "Never Order Helmet Nachos",
Owner: "Chuck",
teams: []string{HO, TB, CL, CIN, TO, MI},
},
{
Name: "Luv2bsbl72",
Owner: "Lindsay",
teams: []string{WA, TB, MIL, TX, TO, SE},
},
{
Name: "a dream Chicken Finger Bucket",
Owner: "Marie",
teams: []string{WA, SL, CL, LAA, PITT, KC},
},
{
Name: "Relief Pitchers",
Owner: "Chris",
teams: []string{LAD, SL, CHIC, CHIW, PITT, BA},
},
{
Name: "I like Inge",
Owner: "Pat",
teams: []string{LAD, SL, PHIL, SD, CO, BA},
},
{
Name: "No glove no love 2",
Owner: "Katie",
teams: []string{NYY, TB, OAK, CHIW, TX, MI},
},
{
Name: "Ultraviolet",
Owner: "Ryan",
teams: []string{ATL, MIN, CHIC, CIN, KC, BA},
},
{
Name: "All Rise",
Owner: "Andrew",
teams: []string{NYY, NYM, CL, LAA, SD, DE},
},
{
Name: "I’m in a nightmare, empty chicken finger bucket",
Owner: "Wolan",
teams: []string{HO, MIN, MIL, AZ, TO, SE},
},
{
Name: "Zookey Burger",
Owner: "Carol",
teams: []string{NYY, OAK, NYM, PITT, CO, DE},
},
{
Name: "wildxbaseball10",
Owner: "Lauren",
teams: []string{WA, PHIL, MIL, AZ, TO, SE},
},
{
Name: "Bernie Sandlot",
Owner: "Casey",
teams: []string{PHIL, CHIC, BO, CO, KC, DE},
},
{
Name: "... Tim?",
Owner: "Tim",
teams: []string{HO, ATL, BO, AZ, SF, SE},
},
{
Name: "Syndergaardians of the Galaxy",
Owner: "Tom",
teams: []string{LAD, SL, NYM, LAA, TO, MI},
},
{
Name: "Baby Clavin",
Owner: "Dan",
teams: []string{NYY, OAK, NYM, LAA, SD, DE},
},
},
}
}