From e7676fbf33e1303ba2f66838d740c704231303c4 Mon Sep 17 00:00:00 2001 From: snoop Date: Tue, 8 Nov 2016 16:43:47 +0900 Subject: [PATCH] changed path --- lib/pq/buf.go | 2 +- lib/pq/conn.go | 2 +- lib/pq/encode.go | 2 +- orm/dialects/h2/h2.go | 4 ++-- orm/model_struct.go | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/pq/buf.go b/lib/pq/buf.go index f021110..39332d1 100644 --- a/lib/pq/buf.go +++ b/lib/pq/buf.go @@ -4,7 +4,7 @@ import ( "bytes" "encoding/binary" - "orm/lib/pq/oid" + "loafle.com/commons/orm/lib/pq/oid" ) type readBuf []byte diff --git a/lib/pq/conn.go b/lib/pq/conn.go index 3914c97..ebdf80d 100644 --- a/lib/pq/conn.go +++ b/lib/pq/conn.go @@ -22,7 +22,7 @@ import ( "time" "unicode" - "orm/lib/pq/oid" + "loafle.com/commons/orm/lib/pq/oid" ) // Common error types diff --git a/lib/pq/encode.go b/lib/pq/encode.go index 787474d..3b49d77 100644 --- a/lib/pq/encode.go +++ b/lib/pq/encode.go @@ -13,7 +13,7 @@ import ( "sync" "time" - "orm/lib/pq/oid" + "loafle.com/commons/orm/lib/pq/oid" ) func binaryEncode(parameterStatus *parameterStatus, x interface{}) []byte { diff --git a/orm/dialects/h2/h2.go b/orm/dialects/h2/h2.go index f28f61e..0d677b3 100644 --- a/orm/dialects/h2/h2.go +++ b/orm/dialects/h2/h2.go @@ -4,8 +4,8 @@ import ( "database/sql" "database/sql/driver" - _ "orm/lib/pq" - "orm/lib/pq/hstore" + _ "loafle.com/commons/orm/lib/pq" + "loafle.com/commons/orm/lib/pq/hstore" ) type Hstore map[string]*string diff --git a/orm/model_struct.go b/orm/model_struct.go index 2c3007d..735ca8e 100644 --- a/orm/model_struct.go +++ b/orm/model_struct.go @@ -9,7 +9,7 @@ import ( "sync" "time" - "orm/inflection" + "loafle.com/commons/orm/inflection" ) // DefaultTableNameHandler default table name handler