Files
api/index.js
Alexis Tyler bfda1a6f00 ensure process title is set and cleanup unused vars
Signed-off-by: Alexis Tyler <xo@wvvw.me>
2019-06-30 14:24:17 +09:30

18 lines
526 B
JavaScript

/*
* Copyright 2005-2019, Lime Technology
* Copyright 2018-2019, Alexis Tyler
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*/
// Set process title
process.title = require('./package.json').name.split('/')[1];
// Boot app
require('./app');