mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
11 lines
201 B
Go
11 lines
201 B
Go
package devices
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func DeviceInfo(fi os.FileInfo) (uint64, uint64, error) {
|
|
return 0, 0, errors.Wrap(ErrNotSupported, "cannot get device info on windows")
|
|
}
|