mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-21 23:33:10 +00:00
* chore: remove v1 code * chore: deprecate support for v1 compatibility from JSON-RPC API * chore: remove v1 tests from JSON-RPC suite * chore: remove wakubridge code * chore: remove v1 compatibility functions * chore: remove support for v1 payloads from chat2 app * chore: remove v1 from CI processes * fix: lingering references to private API functions * fix: remove v1 compat from chat2 * fix: some more lingering references in tests
18 lines
328 B
Nim
18 lines
328 B
Nim
when (NimMajor, NimMinor) < (1, 4):
|
|
{.push raises: [Defect].}
|
|
else:
|
|
{.push raises: [].}
|
|
|
|
import
|
|
std/[os, strutils],
|
|
json_rpc/rpcclient
|
|
import
|
|
../../../waku_core,
|
|
../message
|
|
|
|
export message
|
|
|
|
template sourceDir: string = currentSourcePath.rsplit(DirSep, 1)[0]
|
|
|
|
createRpcSigs(RpcHttpClient, sourceDir / "callsigs.nim")
|