2022-07-29 12:53:42 +02:00
|
|
|
# Copyright (c) 2018-2022 Status Research & Development GmbH
|
2020-10-27 10:00:57 +01:00
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2022-07-29 12:53:42 +02:00
|
|
|
when (NimMajor, NimMinor) < (1, 4):
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
else:
|
|
|
|
{.push raises: [].}
|
2021-03-26 07:52:01 +01:00
|
|
|
|
2020-10-27 10:00:57 +01:00
|
|
|
import
|
2021-08-27 11:00:06 +02:00
|
|
|
chronos, presto/client,
|
2021-08-03 17:17:11 +02:00
|
|
|
"."/[
|
|
|
|
rest_beacon_calls, rest_config_calls, rest_debug_calls,
|
2022-02-07 22:36:09 +02:00
|
|
|
rest_node_calls, rest_validator_calls, rest_keymanager_calls,
|
2022-07-21 19:54:07 +03:00
|
|
|
rest_nimbus_calls, rest_common
|
2021-08-03 17:17:11 +02:00
|
|
|
]
|
2020-10-27 10:00:57 +01:00
|
|
|
|
2021-08-03 17:17:11 +02:00
|
|
|
export
|
2021-08-27 11:00:06 +02:00
|
|
|
chronos, client,
|
2021-08-03 17:17:11 +02:00
|
|
|
rest_beacon_calls, rest_config_calls, rest_debug_calls,
|
2022-02-07 22:36:09 +02:00
|
|
|
rest_node_calls, rest_validator_calls, rest_keymanager_calls,
|
2022-07-21 19:54:07 +03:00
|
|
|
rest_nimbus_calls, rest_common
|