8 lines
211 B
JavaScript
8 lines
211 B
JavaScript
const GAME_STRINGS = {
|
|
'HELLO': 'Hello World!\nHow are you today?\nThank god!',
|
|
|
|
'POKER_GAME_START': 'Poker game started',
|
|
'POKER_GAME_TAKING_BLINDS': 'Blinds taken.'
|
|
};
|
|
|
|
module.exports = { GAME_STRINGS }; |