mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
11 lines
241 B
Go
11 lines
241 B
Go
package model
|
|
|
|
import (
|
|
arcMDL "go-common/app/service/main/archive/model/archive"
|
|
)
|
|
|
|
// ArcVisible .
|
|
func ArcVisible(state int32) bool {
|
|
return state == arcMDL.StateOpen || state == arcMDL.StateOrange || state == arcMDL.StateForbidFixed
|
|
}
|