Spaces:
Runtime error
Runtime error
File size: 143 Bytes
b7c5e0b |
1 2 3 4 5 6 7 8 9 |
import enum
class HttpContentType(str, enum.Enum):
"""Http content type values."""
HTML = "text/html"
JSON = "application/json"
|