pcgamedb/db/fitgirl.go

12 lines
222 B
Go
Raw Permalink Normal View History

2024-09-24 06:17:11 -04:00
package db
2024-11-20 06:09:04 -05:00
import "pcgamedb/model"
2024-09-24 06:17:11 -04:00
func GetFitgirlAllGameItems() ([]*model.GameItem, error) {
return GetGameItemsByAuthor("fitgirl")
2024-09-24 06:17:11 -04:00
}
func IsFitgirlCrawled(flag string) bool {
2024-11-14 12:29:19 -05:00
return IsGameCrawled(flag, "fitgirl")
2024-09-24 06:17:11 -04:00
}