mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
13 lines
366 B
JavaScript
Executable File
13 lines
366 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const program = require('commander');
|
|
const process = require('process');
|
|
const boilerplate = require('frappejs/model/boilerplate');
|
|
|
|
program.command('new-model <name>')
|
|
.description('Create a new model in the `models/doctype` folder')
|
|
.action((name) => {
|
|
boilerplate.make_model_files(name);
|
|
});
|
|
|
|
program.parse(process.argv); |