Add status function to return server health info

This commit is contained in:
2025-12-24 13:43:43 -05:00
committed by GitHub
parent 2deab377f9
commit 39a4e8db83

6
backend/server.js Normal file
View File

@@ -0,0 +1,6 @@
export function status() {
return {
worldTime: Date.now(),
status: "alive"
};
}