24 lines
430 B
Go
Executable File
24 lines
430 B
Go
Executable File
package fake
|
|
|
|
import "hamster-tycoon/storage/model"
|
|
|
|
func (db *DatabaseFake) GetAllGames() ([]*model.Game, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func (db *DatabaseFake) GetGameById(string) (*model.Game, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func (db *DatabaseFake) CreateGame(*model.Game) error {
|
|
return nil
|
|
}
|
|
|
|
func (db *DatabaseFake) DeleteGame(string) error {
|
|
return nil
|
|
}
|
|
|
|
func (db *DatabaseFake) UpdateGame(*model.Game) error {
|
|
return nil
|
|
}
|