nsfwapp/backend/nsfw_types.go
2026-03-14 14:28:33 +01:00

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"`
}