Fix imports for v6
This commit is contained in:
parent
362c74b04f
commit
5873ea302b
13 changed files with 13 additions and 13 deletions
2
byte.go
2
byte.go
|
@ -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.
|
||||
|
|
2
bytes.go
2
bytes.go
|
@ -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
|
||||
|
|
|
@ -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
2
int.go
|
@ -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.
|
||||
|
|
2
int16.go
2
int16.go
|
@ -8,7 +8,7 @@ import (
|
|||
"math"
|
||||
"strconv"
|
||||
|
||||
"gopkg.in/nullbio/null.v5/convert"
|
||||
"gopkg.in/nullbio/null.v6/convert"
|
||||
)
|
||||
|
||||
// Int16 is an nullable int16.
|
||||
|
|
2
int32.go
2
int32.go
|
@ -8,7 +8,7 @@ import (
|
|||
"math"
|
||||
"strconv"
|
||||
|
||||
"gopkg.in/nullbio/null.v5/convert"
|
||||
"gopkg.in/nullbio/null.v6/convert"
|
||||
)
|
||||
|
||||
// Int32 is an nullable int32.
|
||||
|
|
2
int8.go
2
int8.go
|
@ -8,7 +8,7 @@ import (
|
|||
"math"
|
||||
"strconv"
|
||||
|
||||
"gopkg.in/nullbio/null.v5/convert"
|
||||
"gopkg.in/nullbio/null.v6/convert"
|
||||
)
|
||||
|
||||
// Int8 is an nullable int8.
|
||||
|
|
2
json.go
2
json.go
|
@ -7,7 +7,7 @@ import (
|
|||
"errors"
|
||||
"fmt"
|
||||
|
||||
"gopkg.in/nullbio/null.v5/convert"
|
||||
"gopkg.in/nullbio/null.v6/convert"
|
||||
)
|
||||
|
||||
// JSON is a nullable []byte.
|
||||
|
|
2
uint.go
2
uint.go
|
@ -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.
|
||||
|
|
|
@ -8,7 +8,7 @@ import (
|
|||
"math"
|
||||
"strconv"
|
||||
|
||||
"gopkg.in/nullbio/null.v5/convert"
|
||||
"gopkg.in/nullbio/null.v6/convert"
|
||||
)
|
||||
|
||||
// Uint16 is an nullable uint16.
|
||||
|
|
|
@ -8,7 +8,7 @@ import (
|
|||
"math"
|
||||
"strconv"
|
||||
|
||||
"gopkg.in/nullbio/null.v5/convert"
|
||||
"gopkg.in/nullbio/null.v6/convert"
|
||||
)
|
||||
|
||||
// Uint32 is an nullable uint32.
|
||||
|
|
|
@ -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.
|
||||
|
|
2
uint8.go
2
uint8.go
|
@ -8,7 +8,7 @@ import (
|
|||
"math"
|
||||
"strconv"
|
||||
|
||||
"gopkg.in/nullbio/null.v5/convert"
|
||||
"gopkg.in/nullbio/null.v6/convert"
|
||||
)
|
||||
|
||||
// Uint8 is an nullable uint8.
|
||||
|
|
Loading…
Reference in a new issue