added another module

This commit is contained in:
John Lancaster
2025-02-03 23:05:51 -06:00
parent 3e82297db2
commit 2382e2c44b

View File

@@ -0,0 +1,6 @@
from enum import Enum, auto
class Food(Enum):
PIZZA = auto()
BURGER = auto()