7 lines
112 B
Plaintext
7 lines
112 B
Plaintext
|
|
#!/usr/bin/env node
|
||
|
|
|
||
|
|
(async () => {
|
||
|
|
const oclif = await import('@oclif/core');
|
||
|
|
await oclif.execute({});
|
||
|
|
})();
|