mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-10 19:54:57 +02: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;
|
|
}
|
|
});
|