mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 11:03:34 +00:00
9 lines
177 B
Go
9 lines
177 B
Go
//go:build !linux
|
|
|
|
package osinfo
|
|
|
|
// KernelVersion returns an empty string on non-Linux hosts where the machine daemon does not run.
|
|
func KernelVersion() string {
|
|
return ""
|
|
}
|