otter-space-sdk/pkg/models/const.go
2024-02-16 15:16:50 +01:00

28 lines
438 B
Go

package models
type AnthroveUserID string
type AnthrovePostID string
type AnthroveRating string
const (
SFW AnthroveRating = "s"
NSFW AnthroveRating = "e"
Questionable AnthroveRating = "q"
Unknown AnthroveRating = "unknown"
)
func (r *AnthroveRating) Convert(e621Rating string) {
switch e621Rating {
case "e":
*r = NSFW
case "q":
*r = Questionable
case "s":
*r = SFW
default:
*r = Unknown
}
}