Files
rkKVM/utils/utils.go
2024-10-30 13:23:52 +01:00

9 lines
78 B
Go

package utils
func BoolToInt(b bool) int {
if b {
return 1
}
return 0
}