9 lines
146 B
Go
9 lines
146 B
Go
|
package model_res
|
||
|
|
||
|
import "catface/app/model"
|
||
|
|
||
|
type CatfaceCat struct {
|
||
|
Animal model.Animal `json:"animal"`
|
||
|
Conf float64 `json:"conf"`
|
||
|
}
|