mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-05 08:06:15 +00:00
7 lines
103 B
Python
7 lines
103 B
Python
from enum import Enum
|
|
|
|
|
|
class StoreStatusEnum(str, Enum):
|
|
VALID = "valid"
|
|
|
|
EXPIRED = "expired"
|