()
| 135 | ) |
| 136 | |
| 137 | func windowsUptime() time.Duration { |
| 138 | r, _, _ := getTickCount64Proc.Call() |
| 139 | return time.Duration(int64(r)) * time.Millisecond |
| 140 | } |
| 141 | |
| 142 | // TODO(@dean): implement a way to install/uninstall the wintun driver, most |
| 143 | // likely as a CLI command |
no test coverage detected