mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-05 08:06:15 +00:00
6 lines
85 B
Python
6 lines
85 B
Python
from enum import Enum
|
|
|
|
|
|
class HttpEnum(str, Enum):
|
|
GET = "get"
|
|
POST = "post"
|