1
0
Fork 0
js-utils/src/app.ts

8 lines
222 B
TypeScript
Raw Normal View History

2022-10-08 19:10:17 +00:00
import { VERSION_INFO } from './version.js';
export async function main(argv: Array<string>): Promise<number> {
/* eslint-disable-next-line no-console */
2020-03-29 13:43:52 +00:00
console.log('Hello World!', VERSION_INFO, argv);
return 1;
}