yinbangzhong
2024-06-20 b4d6928d7387d2bbadbff4ef754605ac7c4916be
1
2
3
4
5
6
7
8
9
10
11
package response
 
import "speechAnalysis/constvar"
 
type FollowResp struct {
    FollowStatus constvar.BoolType `json:"followStatus"` //1 已关注 2未关注
}
 
type PreLoadPathResp struct {
    PreLoadPath string `json:"preLoadPath"`
}