UNPKG

roster-server

Version:

👾 RosterServer - A domain host router to host multiple HTTPS.

6 lines • 303 B
module.exports = (httpsServer) => { return (req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' }); res.end('"api.example.com: Crazy from thinking, wanting to be reasonable, and the heart has reasons that reason itself will never understand."'); }; };