mirror of
https://github.com/ION606/ion-cli.git
synced 2026-05-14 22:16:56 +00:00
12 lines
212 B
JavaScript
12 lines
212 B
JavaScript
#!/usr/bin/env node
|
|
|
|
import animeMain from "./anime/getAndSave.js";
|
|
|
|
|
|
function fromCLI() {
|
|
const argsRaw = [...process.argv].slice(2);
|
|
console.log(argsRaw.join(" "));
|
|
animeMain(argsRaw);
|
|
}
|
|
|
|
fromCLI(); |