pcgamedb/db/1337x.go

14 lines
235 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 GetDODIGameItems() ([]*model.GameItem, error) {
return GetGameItemsByAuthor("dodi")
2024-09-24 06:17:11 -04:00
}
func GetKaOsKrewGameItems() ([]*model.GameItem, error) {
return GetGameItemsByAuthor("kaoskrew")
2024-09-24 06:17:11 -04:00
}