mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 07:38:04 -05:00
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
|
||
|
|
)
|