Skip to content

Commit 3ccbccd

Browse files
committed
add welcome message at root
1 parent ec4be21 commit 3ccbccd

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/api/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ async function init() {
8787
);
8888
done();
8989
});
90+
app.get("/", (_, reply) => reply.send("Welcome to the ACM @ UIUC Core API!"));
9091
app.get("/api/v1/healthz", (_, reply) => reply.send({ message: "UP" }));
9192
await app.register(
9293
async (api, _options) => {

0 commit comments

Comments
 (0)