We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec4be21 commit 3ccbccdCopy full SHA for 3ccbccd
src/api/index.ts
@@ -87,6 +87,7 @@ async function init() {
87
);
88
done();
89
});
90
+ app.get("/", (_, reply) => reply.send("Welcome to the ACM @ UIUC Core API!"));
91
app.get("/api/v1/healthz", (_, reply) => reply.send({ message: "UP" }));
92
await app.register(
93
async (api, _options) => {
0 commit comments