9 lines
78 B
Go
9 lines
78 B
Go
package utils
|
|
|
|
func BoolToInt(b bool) int {
|
|
if b {
|
|
return 1
|
|
}
|
|
return 0
|
|
}
|