2024-01-22 09:11:37 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2024 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
|
|
# at your option.
|
|
|
|
# This file may not be copied, modified, or distributed except according to
|
|
|
|
# those terms.
|
|
|
|
|
|
|
|
{.push raises: [].}
|
|
|
|
|
2024-08-23 14:39:33 +00:00
|
|
|
import json_rpc/rpcserver, ../constants, ../common/common
|
2024-01-22 09:11:37 +00:00
|
|
|
|
|
|
|
proc setupExpRpc*(com: CommonRef, server: RpcServer) =
|
2024-08-23 14:39:33 +00:00
|
|
|
# Currently no experimental endpoints
|
2024-01-22 09:11:37 +00:00
|
|
|
|
2024-08-23 14:39:33 +00:00
|
|
|
discard
|