mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 01:22:49 +00:00
11 lines
161 B
JavaScript
Executable File
11 lines
161 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
"use strict";
|
|
|
|
var opener = require("..");
|
|
|
|
opener(process.argv.slice(2), function (error) {
|
|
if (error) {
|
|
throw error;
|
|
}
|
|
});
|