aboutsummaryrefslogtreecommitdiff
path: root/src/match_up/model.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/match_up/model.py')
-rw-r--r--src/match_up/model.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/match_up/model.py b/src/match_up/model.py
index 181b698..3a9990b 100644
--- a/src/match_up/model.py
+++ b/src/match_up/model.py
@@ -2,6 +2,9 @@ from pathlib import PurePath
from tinydb import TinyDB, where
from dataclasses import dataclass
+MIN_SKILL = 1
+MAX_SKILL = 10
+
class PlaySession:
def __init__(self, database_location: PurePath):