mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 12:24:38 +03:00
9 lines
73 B
Go
9 lines
73 B
Go
package utils
|
|
|
|
func Btoi(b bool) int {
|
|
if b {
|
|
return 1
|
|
}
|
|
return 0
|
|
}
|