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