diff options
author | Florian Dold <florian@dold.me> | 2023-01-26 12:48:35 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2023-01-26 12:48:35 +0100 |
commit | 3cc26d00f85209c804d9f356598c0f749367ea74 (patch) | |
tree | 7b9d175cbc0de4312c98d80771fbda27f3fc8497 /packages/taler-wallet-cli/src/index.ts | |
parent | c57ba4c0cea133059ac30eae3c7e527886240059 (diff) |
put taler wallet RPC into taler-util, make it cross-platform
Diffstat (limited to 'packages/taler-wallet-cli/src/index.ts')
-rw-r--r-- | packages/taler-wallet-cli/src/index.ts | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/packages/taler-wallet-cli/src/index.ts b/packages/taler-wallet-cli/src/index.ts index 14000aefd..67d0e3784 100644 --- a/packages/taler-wallet-cli/src/index.ts +++ b/packages/taler-wallet-cli/src/index.ts @@ -24,7 +24,6 @@ import { clk, codecForList, codecForString, - CoreApiMessageEnvelope, CoreApiRequestEnvelope, CoreApiResponse, decodeCrock, @@ -45,7 +44,6 @@ import { openPromise, TalerCryptoInterface, TalerError, - WalletCoreResponseType, } from "@gnu-taler/taler-wallet-core"; import { CryptoDispatcher, @@ -64,7 +62,11 @@ import { } from "@gnu-taler/taler-wallet-core"; import fs from "fs"; import os from "os"; -import { connectRpc, JsonMessage, runRpcServer } from "./rpc.js"; +import { + connectRpc, + JsonMessage, + runRpcServer, +} from "@gnu-taler/taler-util/twrpc"; // This module also serves as the entry point for the crypto // thread worker, and thus must expose these two handlers. |