2019-09-29 21:06:03 +00:00
|
|
|
import { VERSION_INFO } from './version';
|
2019-09-28 09:25:07 +00:00
|
|
|
|
2019-09-29 15:03:26 +00:00
|
|
|
export async function main(argv: Array<string>): Promise<number> {
|
2019-11-09 22:50:30 +00:00
|
|
|
/* eslint-disable-next-line no-console */
|
2020-03-29 13:43:52 +00:00
|
|
|
console.log('Hello World!', VERSION_INFO, argv);
|
2019-09-29 15:03:26 +00:00
|
|
|
return 1;
|
2019-09-17 12:45:15 +00:00
|
|
|
}
|