15 lines
302 B
Go
15 lines
302 B
Go
// backend\nsfw_types.go
|
|
|
|
package main
|
|
|
|
type NsfwFrameResult struct {
|
|
Label string `json:"label"`
|
|
Score float64 `json:"score"`
|
|
}
|
|
|
|
type NsfwImageResponse struct {
|
|
Ok bool `json:"ok"`
|
|
Results []NsfwFrameResult `json:"results"`
|
|
Error string `json:"error,omitempty"`
|
|
}
|