aboutsummaryrefslogtreecommitdiff
path: root/cli.js
diff options
context:
space:
mode:
authorLarsVomMars2021-01-27 14:34:36 +0100
committerLarsVomMars2021-01-27 14:34:36 +0100
commit833a7316fce5dd2be52255da3d9bc0809ef74413 (patch)
treeddd2ca5a17c51973803045b15f717d3dcee21874 /cli.js
parent675a967c7b8d5003cbb497e0b014062becc2f71c (diff)
Profile characteristic
Diffstat (limited to 'cli.js')
-rwxr-xr-xcli.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli.js b/cli.js
index e3165d2..2a7e5d3 100755
--- a/cli.js
+++ b/cli.js
@@ -45,6 +45,12 @@ if ((idx = params.indexOf("-r")) > -1) {
.then(() => process.exit(0))
.catch(console.error);
break;
+ case "char":
+ db.resetCharacteristics()
+ .then(() => console.info("Reset char!"))
+ .then(() => process.exit(0))
+ .catch(console.error);
+ break;
default:
console.info("Nothing to do!");
process.exit(0);