Files
hamster-tycoon/storage/dao/postgresql/database_postgresql_games.go
2020-05-11 00:44:22 +02:00

24 lines
466 B
Go
Executable File

package postgresql
import "hamster-tycoon/storage/model"
func (db *DatabasePostgreSQL) GetAllGames() ([]*model.Game, error) {
return nil, nil
}
func (db *DatabasePostgreSQL) GetGameById(string) (*model.Game, error) {
return nil, nil
}
func (db *DatabasePostgreSQL) CreateGame(*model.Game) error {
return nil
}
func (db *DatabasePostgreSQL) DeleteGame(string) error {
return nil
}
func (db *DatabasePostgreSQL) UpdateGame(*model.Game) error {
return nil
}