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()