pcgamedb/db/onlinefix.go
2024-09-24 18:17:11 +08:00

14 lines
244 B
Go

package db
import (
"pcgamedb/model"
)
func GetOnlineFixGameDownloads() ([]*model.GameDownload, error) {
return GetGameDownloadsByAuthor("onlinefix")
}
func IsOnlineFixCrawled(flag string) bool {
return IsGameCrawled(flag, "onlinefix")
}