mirror of https://github.com/mattn/go-sqlite3.git
use for Go 1.8 "context" standard package, not "golang.org/x/net/context" ...
This commit is contained in:
parent
b2e464529e
commit
06cec77f55
|
@ -116,7 +116,10 @@ import (
|
|||
"time"
|
||||
"unsafe"
|
||||
|
||||
"golang.org/x/net/context"
|
||||
/// before Go 1.7, contexts used to be in "golang.org/x/net/context"
|
||||
|
||||
/// but in Go 1.7 and Go 1.8, they are provided by the standard library
|
||||
"context"
|
||||
)
|
||||
|
||||
// SQLiteTimestampFormats is timestamp formats understood by both this module
|
||||
|
|
Loading…
Reference in New Issue