chore(): Moves the constants to their own entitiy file

This commit is contained in:
Elia el Lazkani 2024-11-24 21:27:35 +01:00
parent c2e51a9f71
commit 5d5cb2fdab
2 changed files with 9 additions and 4 deletions

View file

@ -1,7 +1,4 @@
CARDS = {
"fibonacci": [0.5, 1, 2, 3, 5, 8, 13, 21, 34, 55, "?"],
"tshirt": ["XS", "S", "M", "L", "XL", "XXL", "XXXL", "?"],
}
from src.entities.constants import CARDS
class Cards:

View file

@ -0,0 +1,8 @@
"""
File containing all constant entities
"""
CARDS = {
"fibonacci": [0.5, 1, 2, 3, 5, 8, 13, 21, 34, 55, "?"],
"tshirt": ["XS", "S", "M", "L", "XL", "XXL", "XXXL", "?"],
}