From 4fc30fa1d38fb79acf18fa3a2835b85e8a81da60 Mon Sep 17 00:00:00 2001 From: jingooo5 Date: Sun, 3 Nov 2024 06:35:29 +0900 Subject: [PATCH] chore:update endpoint --- Database/models.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Database/models.py b/Database/models.py index 95e64a7..1e2e82a 100644 --- a/Database/models.py +++ b/Database/models.py @@ -11,10 +11,10 @@ def hash_id(): return str(uuid.uuid4().hex) class ItemCategory(str, enum.Enum): - KITCHEN = "kitchen" - BATHROOM = "bathroom" - LIVINGROOM = "livingroom" - CLEANROOM = "laundryroom" + 주방 = "주방" + 욕실 = "욕실" + 거실 = "거실" + 세탁실 = "세탁실" @classmethod def list(cls):