pcgamedb/db/onlinefix.go

14 lines
232 B
Go
Raw 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 GetOnlineFixGameItems() ([]*model.GameItem, error) {
return GetGameItemsByAuthor("onlinefix")
2024-09-24 06:17:11 -04:00
}
func IsOnlineFixCrawled(flag string) bool {
return IsGameCrawled(flag, "onlinefix")
}