model.go 501 B

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