Skip to content

Commit

Permalink
- make mesage be a simple "Hello", instead of using "get"
Browse files Browse the repository at this point in the history
  • Loading branch information
psmithshine committed Jul 2, 2024
1 parent 7a9f4db commit fbb21ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/src/datasources.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export class MessageDataSource extends RESTDataSource {
}

async getMessage() {
return this.get("/");
return "Hello";
}
}

0 comments on commit fbb21ec

Please sign in to comment.