File size: 143 Bytes
f1d068a
 
 
 
 
 
 
 
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"