mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
15 lines
287 B
Go
15 lines
287 B
Go
// +build windows
|
|
|
|
package windows
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/daemon/execdriver"
|
|
)
|
|
|
|
// Stats implements the exec driver Driver interface.
|
|
func (d *Driver) Stats(id string) (*execdriver.ResourceStats, error) {
|
|
return nil, fmt.Errorf("Windows: Stats not implemented")
|
|
}
|