mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
10 lines
150 B
JavaScript
Executable file
10 lines
150 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
const oclif = require('@oclif/core');
|
|
|
|
oclif
|
|
.execute({ dir: __dirname })
|
|
.catch(e => {
|
|
throw e;
|
|
})
|
|
.then(() => {});
|