You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
426 B
27 lines
426 B
package model |
|
|
|
// 接口Action定义 |
|
const ( |
|
ActionRecommend = iota |
|
ActionPlay |
|
ActionLike |
|
ActionCancelLike |
|
ActionFollow |
|
ActionCancelFollow |
|
ActionCommentAdd |
|
ActionCommentLike |
|
ActionCommentReport |
|
ActionFeedList |
|
ActionShare |
|
ActionDanmaku |
|
ActionPlayPause |
|
ActionPushRegister |
|
ActionPushSucced |
|
ActionPushCallback |
|
ActionBlack |
|
ActionCancelBlack |
|
ActionVideoSearch |
|
ActionUserSearch |
|
ActionUserUnLike |
|
ActionPlayOut |
|
)
|
|
|