Update example code in README

Organize imports to groups According to https://github.com/golang/go/wiki/CodeReviewComments#imports.
This commit is contained in:
Oleksandr Redko 2018-10-09 17:15:15 +03:00
parent 5633e08626
commit cc16497fcd
1 changed files with 2 additions and 1 deletions

View File

@ -22,8 +22,9 @@ one) to recover from downtime quickly. (See the docs for `NewFrom()` for caveats
```go
import (
"fmt"
"github.com/patrickmn/go-cache"
"time"
"github.com/patrickmn/go-cache"
)
func main() {