Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ wheels/

# Virtual environments
.venv
venv

# DB files
*.db
Expand Down
2 changes: 2 additions & 0 deletions games/src/games/game_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from .pancakes import Pancakes
from .chipschallenge import ChipsChallenge
from .test import Test
from .sokoban import Sokoban
from models import *

game_list = {
Expand All @@ -11,6 +12,7 @@
"horses": Horses,
"pancakes": Pancakes,
"test": Test,
"sokoban": Sokoban
}

def validate(game_id: str, variant_id: str) -> bool:
Expand Down
Loading