mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
12 lines
197 B
Go
12 lines
197 B
Go
|
// 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
|
||
|
}
|