const.go 426 B

123456789101112131415161718192021222324252627
  1. package model
  2. // 接口Action定义
  3. const (
  4. ActionRecommend = iota
  5. ActionPlay
  6. ActionLike
  7. ActionCancelLike
  8. ActionFollow
  9. ActionCancelFollow
  10. ActionCommentAdd
  11. ActionCommentLike
  12. ActionCommentReport
  13. ActionFeedList
  14. ActionShare
  15. ActionDanmaku
  16. ActionPlayPause
  17. ActionPushRegister
  18. ActionPushSucced
  19. ActionPushCallback
  20. ActionBlack
  21. ActionCancelBlack
  22. ActionVideoSearch
  23. ActionUserSearch
  24. ActionUserUnLike
  25. ActionPlayOut
  26. )