mirror of
https://github.com/docker/docs.git
synced 2026-03-28 14:58:53 +07:00
16 lines
247 B
Go
16 lines
247 B
Go
package blkiodev
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// WeightDevice is a structure that hold device:weight pair
|
|
type WeightDevice struct {
|
|
Path string
|
|
Weight uint16
|
|
}
|
|
|
|
func (w *WeightDevice) String() string {
|
|
return fmt.Sprintf("%s:%d", w.Path, w.Weight)
|
|
}
|