Fix missing import in pooling implementation.
This commit is contained in:
parent
a05555ee67
commit
540d0d2f67
@ -1,6 +1,6 @@
|
||||
# Package
|
||||
|
||||
version = "2.1.0"
|
||||
version = "2.1.1"
|
||||
author = "Jonathan Bernard"
|
||||
description = "Lightweight Postgres ORM for Nim."
|
||||
license = "GPL-3.0"
|
||||
@ -11,4 +11,4 @@ srcDir = "src"
|
||||
# Dependencies
|
||||
|
||||
requires @["nim >= 1.4.0", "uuids"]
|
||||
requires "https://git.jdb-software.com/jdb/nim-namespaced-logging.git"
|
||||
requires "namespaced_logging >= 0.3.0"
|
||||
|
@ -6,8 +6,8 @@
|
||||
|
||||
import std/[db_common, logging, sequtils, strutils, sugar]
|
||||
|
||||
from std/db_sqlite import getRow
|
||||
from std/db_postgres import getRow
|
||||
from std/db_sqlite import getRow, close
|
||||
from std/db_postgres import getRow, close
|
||||
|
||||
import namespaced_logging
|
||||
import ./db_common as fiber_db_common
|
||||
|
Loading…
x
Reference in New Issue
Block a user