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