mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-06-20 04:16:35 +00:00

## Summary Update several moving parts of cloudflared build system: * use goboring 1.24.2 in cfsetup * update linter and fix lint issues * update packages namely **quic-go and net** * install script for macos * update docker files to use go 1.24.1 * remove usage of cloudflare-go * pin golang linter Closes TUN-9016
29 lines
548 B
Go
29 lines
548 B
Go
package sprig
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
)
|
|
|
|
// typeIs returns true if the src is the type named in target.
|
|
func typeIs(target string, src interface{}) bool {
|
|
return target == typeOf(src)
|
|
}
|
|
|
|
func typeIsLike(target string, src interface{}) bool {
|
|
t := typeOf(src)
|
|
return target == t || "*"+target == t
|
|
}
|
|
|
|
func typeOf(src interface{}) string {
|
|
return fmt.Sprintf("%T", src)
|
|
}
|
|
|
|
func kindIs(target string, src interface{}) bool {
|
|
return target == kindOf(src)
|
|
}
|
|
|
|
func kindOf(src interface{}) string {
|
|
return reflect.ValueOf(src).Kind().String()
|
|
}
|