Manage vendor (#557)

* feat: add dep configuration files.

* chore: add vendor folder.

* refactor: update Dockerfile.

* review: remove git from Dockerfile.

* review: remove RUN apk.

* review: dep status.

* feat: added .dockerignore
This commit is contained in:
Ludovic Fernandez 2018-05-31 00:28:41 +02:00 committed by Wyatt Johnson
parent 1b12c25e43
commit 6004e599ed
1217 changed files with 363499 additions and 11 deletions

View file

@ -0,0 +1,12 @@
// +build go1.7
package sdkio
import "io"
// Alias for Go 1.7 io package Seeker constants
const (
SeekStart = io.SeekStart // seek relative to the origin of the file
SeekCurrent = io.SeekCurrent // seek relative to the current offset
SeekEnd = io.SeekEnd // seek relative to the end
)