feat: update liquibase script
This commit is contained in:
23
storage/dao/fake/database_fake_games.go
Executable file
23
storage/dao/fake/database_fake_games.go
Executable file
@@ -0,0 +1,23 @@
|
||||
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
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
package fake
|
||||
Reference in New Issue
Block a user