Files
kubernetes/third_party/github.com/fsouza/go-dockerclient/utils/utils_windows.go
2014-06-06 16:40:48 -07:00

18 lines
362 B
Go

// Copyright 2014 Docker authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the DOCKER-LICENSE file.
package utils
import (
"errors"
)
type Utsname struct {
Release [65]byte
}
func uname() (*Utsname, error) {
return nil, errors.New("Kernel version detection is not available on windows")
}