mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 23:58:04 -05:00
13 lines
253 B
Go
13 lines
253 B
Go
|
|
package model
|
||
|
|
|
||
|
|
//go:generate $GOPATH/src/go-common/app/tool/warden/protoc.sh
|
||
|
|
|
||
|
|
const (
|
||
|
|
// HideStateON 不记录播放历史
|
||
|
|
HideStateON = 1
|
||
|
|
// HideStateOFF 记录播放历史
|
||
|
|
HideStateOFF = 0
|
||
|
|
// HideStateNotFound not found
|
||
|
|
HideStateNotFound = -1
|
||
|
|
)
|