use for Go 1.8 "context" standard package, not "golang.org/x/net/context" ...

This commit is contained in:
Basile Starynkevitch 2017-04-01 20:02:24 +02:00
parent b2e464529e
commit 06cec77f55
1 changed files with 4 additions and 1 deletions

View File

@ -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