Add Dependencies info to README.md.

This commit is contained in:
go-jet 2019-07-04 17:54:15 +02:00
parent f34c5e7fe8
commit 55e8c3bbb1
10 changed files with 79 additions and 43 deletions

View file

@ -2,8 +2,8 @@ package jet
import (
"bytes"
"github.com/go-jet/jet/internal/utils"
"github.com/google/uuid"
"github.com/lib/pq"
"strconv"
"strings"
"time"
@ -250,7 +250,7 @@ func ArgToString(value interface{}) string {
case uuid.UUID:
return stringQuote(bindVal.String())
case time.Time:
return stringQuote(string(pq.FormatTimestamp(bindVal)))
return stringQuote(string(utils.FormatTimestamp(bindVal)))
default:
return "[Unknown type]"
}