From 2382e2c44be168f696c66ba177cd54bc26e94b7f Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Mon, 3 Feb 2025 23:05:51 -0600 Subject: [PATCH] added another module --- conf/apps/food-repo/src/restaurant/other.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 conf/apps/food-repo/src/restaurant/other.py diff --git a/conf/apps/food-repo/src/restaurant/other.py b/conf/apps/food-repo/src/restaurant/other.py new file mode 100644 index 0000000..4a8c123 --- /dev/null +++ b/conf/apps/food-repo/src/restaurant/other.py @@ -0,0 +1,6 @@ +from enum import Enum, auto + + +class Food(Enum): + PIZZA = auto() + BURGER = auto()