mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-12-07 04:53:50 +01: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;
|
|
}
|
|
});
|