mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-06 08:16:00 +00:00
9 lines
141 B
Python
9 lines
141 B
Python
from enum import Enum
|
|
|
|
|
|
class HttpEnum(str, Enum):
|
|
GET = "get"
|
|
POST = "post"
|
|
HEAD = "head"
|
|
PUT = "put"
|
|
DELETE = "delete"
|