Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
"""This module contains the base response domain model."""

import abc
import logging

from mythx_models.base import BaseModel

LOGGER = logging.getLogger(__name__)


class BaseResponse(BaseModel, abc.ABC):
    """An abstract object describing responses from the MythX API."""

    pass