From e377656a92f1abb0ab0986eb023c2ac5a5e2f239 Mon Sep 17 00:00:00 2001 From: Paul-Louis NECH Date: Sun, 26 Apr 2020 13:14:35 +0200 Subject: [PATCH] fix: Add missing file --- server/model/color.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 server/model/color.py diff --git a/server/model/color.py b/server/model/color.py new file mode 100644 index 0000000..e49b1cb --- /dev/null +++ b/server/model/color.py @@ -0,0 +1,11 @@ +from enum import Enum + + +class Color(Enum): + Hearts = "♥" + Spades = "♠" + Clubs = "♣" + Diamonds = "♦" + + def json(self): + return self.value \ No newline at end of file -- libgit2 0.27.0