pcgamedb/db/xatab.go

14 lines
246 B
Go
Raw Normal View History

2024-09-24 06:17:11 -04:00
package db
import (
2024-11-15 02:02:45 -05:00
"github.com/nitezs/pcgamedb/model"
2024-09-24 06:17:11 -04:00
)
func GetXatabGameDownloads() ([]*model.GameDownload, error) {
return GetGameDownloadsByAuthor("xatab")
}
func IsXatabCrawled(flag string) bool {
return IsGameCrawled(flag, "xatab")
}