Fix imports for v6

This commit is contained in:
Patrick O'brien 2016-11-12 11:45:55 +10:00
parent 362c74b04f
commit 5873ea302b
13 changed files with 13 additions and 13 deletions

View file

@ -6,7 +6,7 @@ import (
"encoding/json"
"errors"
"gopkg.in/nullbio/null.v5/convert"
"gopkg.in/nullbio/null.v6/convert"
)
// Byte is an nullable int.

View file

@ -5,7 +5,7 @@ import (
"database/sql/driver"
"encoding/json"
"gopkg.in/nullbio/null.v5/convert"
"gopkg.in/nullbio/null.v6/convert"
)
// NullBytes is a global byte slice of JSON null

View file

@ -6,7 +6,7 @@ import (
"encoding/json"
"strconv"
"gopkg.in/nullbio/null.v5/convert"
"gopkg.in/nullbio/null.v6/convert"
)
// Float32 is a nullable float32.

2
int.go
View file

@ -6,7 +6,7 @@ import (
"encoding/json"
"strconv"
"gopkg.in/nullbio/null.v5/convert"
"gopkg.in/nullbio/null.v6/convert"
)
// Int is an nullable int.

View file

@ -8,7 +8,7 @@ import (
"math"
"strconv"
"gopkg.in/nullbio/null.v5/convert"
"gopkg.in/nullbio/null.v6/convert"
)
// Int16 is an nullable int16.

View file

@ -8,7 +8,7 @@ import (
"math"
"strconv"
"gopkg.in/nullbio/null.v5/convert"
"gopkg.in/nullbio/null.v6/convert"
)
// Int32 is an nullable int32.

View file

@ -8,7 +8,7 @@ import (
"math"
"strconv"
"gopkg.in/nullbio/null.v5/convert"
"gopkg.in/nullbio/null.v6/convert"
)
// Int8 is an nullable int8.

View file

@ -7,7 +7,7 @@ import (
"errors"
"fmt"
"gopkg.in/nullbio/null.v5/convert"
"gopkg.in/nullbio/null.v6/convert"
)
// JSON is a nullable []byte.

View file

@ -6,7 +6,7 @@ import (
"encoding/json"
"strconv"
"gopkg.in/nullbio/null.v5/convert"
"gopkg.in/nullbio/null.v6/convert"
)
// Uint is an nullable uint.

View file

@ -8,7 +8,7 @@ import (
"math"
"strconv"
"gopkg.in/nullbio/null.v5/convert"
"gopkg.in/nullbio/null.v6/convert"
)
// Uint16 is an nullable uint16.

View file

@ -8,7 +8,7 @@ import (
"math"
"strconv"
"gopkg.in/nullbio/null.v5/convert"
"gopkg.in/nullbio/null.v6/convert"
)
// Uint32 is an nullable uint32.

View file

@ -6,7 +6,7 @@ import (
"encoding/json"
"strconv"
"gopkg.in/nullbio/null.v5/convert"
"gopkg.in/nullbio/null.v6/convert"
)
// Uint64 is an nullable uint64.

View file

@ -8,7 +8,7 @@ import (
"math"
"strconv"
"gopkg.in/nullbio/null.v5/convert"
"gopkg.in/nullbio/null.v6/convert"
)
// Uint8 is an nullable uint8.