refactor(docs): use github.com package import path

This commit is contained in:
Tomas 2020-06-06 17:56:17 +02:00
parent 8c370f9b02
commit 6fb1812642

View file

@ -58,7 +58,7 @@ If you're using `gopkg.in`, you can still rely in the `v0` without worrying abou
## Installation ## Installation
```bash ```bash
go get -u gopkg.in/h2non/bimg.v1 go get -u github.com/h2non/bimg
``` ```
### libvips ### libvips
@ -113,7 +113,7 @@ BenchmarkWatermarWebp-8 30 49360369 ns/op
import ( import (
"fmt" "fmt"
"os" "os"
"gopkg.in/h2non/bimg.v1" "github.com/h2non/bimg"
) )
``` ```