1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Windows: Refactor sysinfo for compilation

Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
John Howard 2015-05-14 09:05:14 -07:00
parent fe6f77df2c
commit b7ee717a10
3 changed files with 87 additions and 78 deletions

View file

@ -0,0 +1,7 @@
package sysinfo
// TODO Windows
func New(quiet bool) *SysInfo {
sysInfo := &SysInfo{}
return sysInfo
}