1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Replace old oci specs import with runtime-specs

Fixes #25804

The upstream repo changed the import paths.

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby 2016-08-17 09:38:34 -07:00
parent 2ae49a0887
commit 041e5a21dc
23 changed files with 19 additions and 19 deletions

View file

@ -4,7 +4,7 @@ import (
"os"
"runtime"
"github.com/opencontainers/specs/specs-go"
"github.com/opencontainers/runtime-spec/specs-go"
)
func sPtr(s string) *string { return &s }

View file

@ -1,7 +1,7 @@
package oci
import (
"github.com/opencontainers/specs/specs-go"
"github.com/opencontainers/runtime-spec/specs-go"
)
// DefaultSpec returns default oci spec used by docker.