mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-12 23:54:38 +02:00
* Ability for KeyEntryView to only show specific/allowed keys * Start moving/adding common methods to MenuModule vs boilerplate code * menuFlags: String|StringArray: flags for menus, e.g. new 'noHistory' flag to prevent appending to history/stack * New download stats/MCI codes * Ability to redirect input stream to [protocols] temporairly
13 lines
No EOL
208 B
JavaScript
Executable file
13 lines
No EOL
208 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
/* jslint node: true */
|
|
|
|
'use strict';
|
|
|
|
/*
|
|
ENiGMA½ entry point
|
|
|
|
If this file does not run directly, ensure it's executable:
|
|
> chmod u+x main.js
|
|
*/
|
|
require('./core/bbs.js').bbsMain(); |