audio.go 232 B

1234567891011
  1. package response
  2. import "speechAnalysis/constvar"
  3. type FollowResp struct {
  4. FollowStatus constvar.BoolType `json:"followStatus"` //1 已关注 2未关注
  5. }
  6. type PreLoadPathResp struct {
  7. PreLoadPath string `json:"preLoadPath"`
  8. }