mirror of
https://github.com/stashapp/stash.git
synced 2026-04-17 20:42:26 +02:00
* Update to go 1.19 * Update dependencies * Update cross-compile script * Add missing targets to cross-compile-all * Update cache action to remove warning
8 lines
86 B
Go
8 lines
86 B
Go
package astikit
|
|
|
|
func BoolToUInt32(b bool) uint32 {
|
|
if b {
|
|
return 1
|
|
}
|
|
return 0
|
|
}
|