mirror of
				https://github.com/therootcompany/greenlock-express.js.git
				synced 2024-11-16 17:28:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			209 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			209 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
 | 
						|
// Don't try this at home kids, it's just for fun
 | 
						|
// 
 | 
						|
 | 
						|
// require('letsencrypt-express')
 | 
						|
require('../').testing().create(require('express')().use(function (_, r) {
 | 
						|
  r.end('Hi!');
 | 
						|
})).listen();
 |