mirror of
https://github.com/go-gitea/gitea
synced 2024-11-09 03:34:24 +00:00
12 lines
197 B
Go
Vendored
12 lines
197 B
Go
Vendored
// Copyright (c) 2020 Klaus Post, released under MIT License. See LICENSE file.
|
|
|
|
// +build arm64
|
|
// +build !linux
|
|
// +build !darwin
|
|
|
|
package cpuid
|
|
|
|
func detectOS(c *CPUInfo) bool {
|
|
return false
|
|
}
|