7 lines
104 B
JavaScript
7 lines
104 B
JavaScript
let motd = '';
|
|
|
|
export const getMotd = () => motd;
|
|
export const setMotd = (val) => {
|
|
motd = val;
|
|
};
|