nwaku/waku/common/databases/common.nim
Ivan Folgueira Bande a44d4bfbcd
refactor(databases): Creation of the databases folder to keep the logic for sqlite and postgres (#1811)
* Refactoring in sqlite and postgres. Creation of the databases folder.
2023-06-22 11:27:40 +02:00

7 lines
70 B
Nim

import
stew/results
type
DatabaseResult*[T] = Result[T, string]