14 lines
232 B
Go
14 lines
232 B
Go
package db
|
|
|
|
import (
|
|
"pcgamedb/model"
|
|
)
|
|
|
|
func GetOnlineFixGameItems() ([]*model.GameItem, error) {
|
|
return GetGameItemsByAuthor("onlinefix")
|
|
}
|
|
|
|
func IsOnlineFixCrawled(flag string) bool {
|
|
return IsGameCrawled(flag, "onlinefix")
|
|
}
|