vendor!
This commit is contained in:
25
vendor/github.com/thehowl/go-osuapi/osubool.go
generated
vendored
Normal file
25
vendor/github.com/thehowl/go-osuapi/osubool.go
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
package osuapi
|
||||
|
||||
// OsuBool is just a bool. It's used for unmarshaling of bools in the API that
|
||||
// are either `"1"` or `"0"`. thank mr peppy for the memes
|
||||
//
|
||||
// You can just use it in `if`s and other memes. Should you need to convert it
|
||||
// to a native bool, just do `bool(yourOsuBool)`
|
||||
type OsuBool bool
|
||||
|
||||
// UnmarshalJSON converts `"0"` to false and `"1"` to true.
|
||||
func (o *OsuBool) UnmarshalJSON(data []byte) error {
|
||||
if string(data) == `"0"` {
|
||||
*o = false
|
||||
return nil
|
||||
}
|
||||
*o = true
|
||||
return nil
|
||||
}
|
||||
// MarshalJSON does UnmarshalJSON the other way around.
|
||||
func (o OsuBool) MarshalJSON() ([]byte, error) {
|
||||
if o {
|
||||
return []byte(`"1"`), nil
|
||||
}
|
||||
return []byte(`"0"`), nil
|
||||
}
|
Reference in New Issue
Block a user