14 lines
216 B
Go
14 lines
216 B
Go
package db
|
|
|
|
import (
|
|
"pcgamedb/model"
|
|
)
|
|
|
|
func GetXatabGameItems() ([]*model.GameItem, error) {
|
|
return GetGameItemsByAuthor("xatab")
|
|
}
|
|
|
|
func IsXatabCrawled(flag string) bool {
|
|
return IsGameCrawled(flag, "xatab")
|
|
}
|