This website requires JavaScript.
Explore
Help
Sign In
waku-org
/
nwaku
mirror of
https://github.com/waku-org/nwaku.git
Watch
1
Star
0
Fork
You've already forked nwaku
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
9f8f156ceb
nwaku
/
waku
/
common
/
databases
/
common.nim
4 lines
60 B
Nim
Raw
Normal View
History
Unescape
Escape
chore: Bump dependencies for v0.31.0 (#2885) * bump_dependencies.md: add nim-results dependency * change imports stew/results to results * switching to Nim 2.0.8 * waku.nimble: reflect the requirement nim 1.6.0 to 2.0.8 Adding --mm:refc as nim 2.0 enables a new garbage collector that we're not yet ready to support * adapt waku code to Nim 2.0 * gcsafe adaptations because Nim 2.0 is more strict
2024-07-09 11:14:28 +00:00
import
results
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 09:27:40 +00:00
Generic re-style with nph 0.5.1 (#2396)
2024-03-15 23:08:47 +00:00
type
DatabaseResult
*
[
T
]
=
Result
[
T
,
string
]