1
0
Fork 0
js-yaml-schema/src/app.ts

8 lines
246 B
TypeScript

import { VERSION_INFO } from './version.js';
export async function main(argv: Array<string>): Promise<number> {
/* eslint-disable-next-line no-console */
console.log('Please use this schema with js-yaml.', VERSION_INFO, argv);
return 1;
}