| import enum | |
| class HttpContentType(str, enum.Enum): | |
| """Http content type values.""" | |
| HTML = "text/html" | |
| JSON = "application/json" | |
| import enum | |
| class HttpContentType(str, enum.Enum): | |
| """Http content type values.""" | |
| HTML = "text/html" | |
| JSON = "application/json" | |