11 lines
247 B
Go
11 lines
247 B
Go
package sys_config
|
|
|
|
import (
|
|
"91porn-server/models/cache/sysconfdata"
|
|
)
|
|
|
|
// GetTotalWatchCount 读取系统配置 `totalWatchCount`,若未配置则返回默认值。
|
|
func GetTotalWatchCount() uint64 {
|
|
return sysconfdata.GetTotalWatchCount()
|
|
}
|