pcgamedb/db/xatab.go
nite07 356a76f5b4 add export cmd
add supplement cmd
rename GameDown to GameItem
2024-11-16 13:48:48 +08:00

14 lines
234 B
Go

package db
import (
"github.com/nitezs/pcgamedb/model"
)
func GetXatabGameItems() ([]*model.GameItem, error) {
return GetGameItemsByAuthor("xatab")
}
func IsXatabCrawled(flag string) bool {
return IsGameCrawled(flag, "xatab")
}