pcgamedb/db/xatab.go

14 lines
216 B
Go
Raw Permalink Normal View History

2024-09-24 06:17:11 -04:00
package db
import (
2024-11-20 06:09:04 -05:00
"pcgamedb/model"
2024-09-24 06:17:11 -04:00
)
func GetXatabGameItems() ([]*model.GameItem, error) {
return GetGameItemsByAuthor("xatab")
2024-09-24 06:17:11 -04:00
}
func IsXatabCrawled(flag string) bool {
return IsGameCrawled(flag, "xatab")
}