28 lines
426 B
Go
28 lines
426 B
Go
|
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
|
||
|
)
|