Fix missing import in pooling implementation.

This commit is contained in:
Jonathan Bernard 2023-02-04 10:16:53 -06:00
parent a05555ee67
commit 540d0d2f67
2 changed files with 4 additions and 4 deletions

View File

@ -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"

View File

@ -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