Files
f0ckm/src/inc/motd.mjs
2026-04-25 19:51:52 +02:00

7 lines
104 B
JavaScript

let motd = '';
export const getMotd = () => motd;
export const setMotd = (val) => {
motd = val;
};