mirror of https://github.com/waku-org/nwaku.git
12 lines
284 B
Nim
12 lines
284 B
Nim
|
when (NimMajor, NimMinor) < (1, 4):
|
||
|
{.push raises: [Defect].}
|
||
|
else:
|
||
|
{.push raises: [].}
|
||
|
|
||
|
import
|
||
|
./postgres_driver/postgres_driver,
|
||
|
./postgres_driver/partitions_manager,
|
||
|
./postgres_driver/postgres_healthcheck
|
||
|
|
||
|
export postgres_driver, partitions_manager, postgres_healthcheck
|