Skip to content

Commit 48eda52

Browse files
committed
Add extracurricular activities to the in-memory database
1 parent e926573 commit 48eda52

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

src/app.py

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,42 @@
3838
"schedule": "Mondays, Wednesdays, Fridays, 2:00 PM - 3:00 PM",
3939
"max_participants": 30,
4040
"participants": ["john@mergington.edu", "olivia@mergington.edu"]
41+
},
42+
"Basketball Team": {
43+
"description": "Join the school's basketball team and compete in local leagues",
44+
"schedule": "Tuesdays and Thursdays, 4:00 PM - 6:00 PM",
45+
"max_participants": 15,
46+
"participants": ["liam@mergington.edu"]
47+
},
48+
"Soccer Club": {
49+
"description": "Practice soccer skills and play friendly matches",
50+
"schedule": "Wednesdays, 3:30 PM - 5:30 PM",
51+
"max_participants": 18,
52+
"participants": ["noah@mergington.edu"]
53+
},
54+
"Art Club": {
55+
"description": "Explore painting, drawing, and other visual arts",
56+
"schedule": "Mondays, 3:30 PM - 5:00 PM",
57+
"max_participants": 15,
58+
"participants": ["ava@mergington.edu"]
59+
},
60+
"Drama Society": {
61+
"description": "Participate in theater productions and acting workshops",
62+
"schedule": "Fridays, 4:00 PM - 6:00 PM",
63+
"max_participants": 20,
64+
"participants": ["mia@mergington.edu"]
65+
},
66+
"Math Olympiad": {
67+
"description": "Prepare for math competitions and solve challenging problems",
68+
"schedule": "Thursdays, 3:30 PM - 5:00 PM",
69+
"max_participants": 10,
70+
"participants": ["william@mergington.edu"]
71+
},
72+
"Debate Club": {
73+
"description": "Develop public speaking and argumentation skills",
74+
"schedule": "Wednesdays, 4:00 PM - 5:30 PM",
75+
"max_participants": 16,
76+
"participants": ["charlotte@mergington.edu"]
4177
}
4278
}
4379

0 commit comments

Comments
 (0)