mirror of https://github.com/stashapp/stash.git
8 lines
72 B
Go
8 lines
72 B
Go
|
package utils
|
||
|
|
||
|
func Btoi(b bool) int {
|
||
|
if b {
|
||
|
return 1
|
||
|
}
|
||
|
return 0
|
||
|
}
|