Added server metadata

This commit is contained in:
2026-02-11 00:32:44 +01:00
parent 96d40456d5
commit a40a6d6ad8
3 changed files with 22 additions and 1 deletions

10
services/metaService.js Normal file
View File

@@ -0,0 +1,10 @@
function getServerMetadata() {
return {
name: process.env["INSTANCE_NAME"],
logo: process.env["INSTANCE_LOGO"]
}
}
module.exports = {
getServerMetadata
}