pcgamedb/db/1337x.go

14 lines
253 B
Go
Raw Normal View History

2024-09-24 06:17:11 -04:00
package db
import (
2024-11-15 02:02:45 -05:00
"github.com/nitezs/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
}