Update specs imports for specs-go

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby 2016-03-15 11:31:32 -07:00
parent 2db0341e38
commit e637c1ea80
7 changed files with 12 additions and 13 deletions

View file

@ -1,9 +1,8 @@
package specs
import ocs "github.com/opencontainers/specs"
import ocs "github.com/opencontainers/specs/specs-go"
type (
PlatformSpec ocs.LinuxSpec
ProcessSpec ocs.Process
Spec ocs.Spec
ProcessSpec ocs.Process
Spec ocs.Spec
)

View file

@ -1,6 +1,6 @@
package specs
// Temporary Windows version of the spec in lieu of opencontainers/specs having
// Temporary Windows version of the spec in lieu of opencontainers/specs/specs-go having
// Windows support currently.
type (
@ -8,7 +8,7 @@ type (
ProcessSpec Process
)
// This is a temporary module in lieu of opencontainers/specs being compatible
// This is a temporary module in lieu of opencontainers/specs/specs-go being compatible
// currently on Windows.
// Process contains information to start a specific application inside the container.