@mojojs/core
Version:
Real-time web framework
16 lines (14 loc) • 364 B
JavaScript
import { CGI } from '../cgi.js';
/**
* CGI command.
*/
export default async function cgiCommand(app) {
await new CGI(app).run();
}
cgiCommand.description = 'Start application with CGI';
cgiCommand.usage = `Usage: APPLICATION cgi [OPTIONS]
node index.js cgi
Options:
-h, --help Show this summary of available options
`;
//# sourceMappingURL=cgi.js.map