mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
12 lines
341 B
Go
12 lines
341 B
Go
|
package daemon
|
||
|
|
||
|
import (
|
||
|
"github.com/docker/docker/api/types"
|
||
|
"github.com/docker/docker/container"
|
||
|
)
|
||
|
|
||
|
// Windows network stats are obtained directly through HCS, hence this is a no-op.
|
||
|
func (daemon *Daemon) getNetworkStats(c *container.Container) (map[string]types.NetworkStats, error) {
|
||
|
return make(map[string]types.NetworkStats), nil
|
||
|
}
|