8 lines
76 B
Go
8 lines
76 B
Go
|
//go:build !fips
|
||
|
|
||
|
package fips
|
||
|
|
||
|
func IsFipsEnabled() bool {
|
||
|
return false
|
||
|
}
|