Send to zulip

This commit is contained in:
Koper
2023-11-20 21:39:33 +07:00
parent 82f50817f8
commit ba40d28152
3609 changed files with 2311843 additions and 7 deletions

View File

@@ -0,0 +1,19 @@
#!/usr/bin/env node
var path = require('path');
/*
* Pass optional path to target directory as command line argument.
*
* The directory must include the apis/ folder and service customizations at
* `lib/services`. Clients will be generated in `clients/`.
*
* If parameter is not passed the repository root will be used.
*/
var ClientCreator = require('./client-creator');
var cc = new ClientCreator(process.argv[2] || path.join(__dirname, '..'));
cc.writeClientServices();
console.log('Finished updating services.');