pcgamedb/db/onlinefix.go

14 lines
244 B
Go
Raw Normal View History

2024-09-24 06:17:11 -04:00
package db
import (
"pcgamedb/model"
)
func GetOnlineFixGameDownloads() ([]*model.GameDownload, error) {
return GetGameDownloadsByAuthor("onlinefix")
}
func IsOnlineFixCrawled(flag string) bool {
return IsGameCrawled(flag, "onlinefix")
}