mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -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
|
|
)
|