commit 61a3e00ee50bbfac9b7dc01d7dce41d8dc1f69c5
parent 377c41dfe9f48b2b004ea7b9f133b643620031cf
Author: MS <ms@taler.net>
Date: Thu, 10 Dec 2020 16:32:24 +0100
hook the commands
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/Main.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/Main.kt
@@ -104,6 +104,6 @@ class Superuser : CliktCommand("Add superuser or change pw") {
fun main(args: Array<String>) {
NexusCommand()
- .subcommands(Serve(), Superuser(), ParseCamt())
+ .subcommands(Serve(), Superuser(), ParseCamt(), DropTables())
.main(args)
}
diff --git a/sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt b/sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt
@@ -154,7 +154,7 @@ fun BigDecimal.signToString(): String {
fun main(args: Array<String>) {
SandboxCommand()
- .subcommands(Serve())
+ .subcommands(Serve(), DropTables())
.main(args)
}