Skip to content

fastack.constants

APIEndpoint (str, Enum)

An enumeration.

Source code in fastack/constants.py
class APIEndpoint(str, Enum):
    LIST = "list"
    RETRIEVE = "retrieve"
    CREATE = "create"
    UPDATE = "update"
    DESTROY = "destroy"

Last update: January 17, 2022 13:26:42