From 0f529cf481ea6c4d0aa30d76f4db86fcf1a87908 Mon Sep 17 00:00:00 2001 From: Othniel9 Date: Wed, 13 Oct 2021 11:08:19 -0400 Subject: [PATCH] first commit --- README.md | 1 + src/routes/HelloWorldRoute.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f35425..301e41b 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,4 @@ Skeleton code for the ColorStack Sprout Fall '21 pod project. PodSpace is a priv ## Collaborators Dusk Kitil / CS @ Cornell University '25 +Othniel Bondah / CS @ WPI '23 diff --git a/src/routes/HelloWorldRoute.ts b/src/routes/HelloWorldRoute.ts index df007c4..52ff1fb 100644 --- a/src/routes/HelloWorldRoute.ts +++ b/src/routes/HelloWorldRoute.ts @@ -19,7 +19,7 @@ export default class HelloWorldRoute extends BaseRoute { async content(): Promise { return { message: 'Looks like the server is up and running!', - podmates: ['Dusk Kitil'] + podmates: ['Othniel Bondah'] }; } }