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