mirror of
https://github.com/rastapasta/mapscii.git
synced 2024-11-21 15:43:08 +01:00
18 lines
392 B
JavaScript
18 lines
392 B
JavaScript
/*#
|
|
MapSCII - Terminal Map Viewer
|
|
by Michael Strassburger <codepoet@cpan.org>
|
|
Discover the planet in your console!
|
|
|
|
This scripts boots up the application.
|
|
|
|
TODO: params parsing and so on
|
|
#*/
|
|
'use strict';
|
|
const Mapscii = require('./src/Mapscii');
|
|
|
|
const mapscii = new Mapscii();
|
|
mapscii.init().catch((err) => {
|
|
console.error('Failed to start MapSCII.');
|
|
console.error(err);
|
|
});
|