mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
8 lines
73 B
Go
8 lines
73 B
Go
package utils
|
|
|
|
func Btoi(b bool) int {
|
|
if b {
|
|
return 1
|
|
}
|
|
return 0
|
|
}
|