1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| const db = require("../lib/db")
| const yargs = require("yargs")
|
| /////////////////////////////////////////////////////////////////////////
|
| const argv = yargs
| // .usage("$0 <ref_id>", "get user defined fields",)
| .strict()
| .parse()
|
|
| run(argv)
| .then(console.log)
| .catch(console.error)
| .finally(process.exit)
|
| async function run({ref_id}) {
| return await db.getUdf()
| }
|
|