fix compile error
[platform/upstream/docker-engine.git] / daemon / stats_windows.go
1 package daemon
2
3 import (
4         "github.com/docker/docker/api/types"
5         "github.com/docker/docker/container"
6 )
7
8 // Windows network stats are obtained directly through HCS, hence this is a no-op.
9 func (daemon *Daemon) getNetworkStats(c *container.Container) (map[string]types.NetworkStats, error) {
10         return make(map[string]types.NetworkStats), nil
11 }