11 lines
		
	
	
		
			246 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			246 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const morning = require('./morning');
 | |
| const evening = require('./evening');
 | |
| 
 | |
| module.exports = {
 | |
|     getMorningMessage: function () {
 | |
|         console.log(morning);
 | |
|     },
 | |
|     getEveningMessage: function () {
 | |
|         console.log(evening);
 | |
|     },
 | |
| }; | 
