Source code for dantro.containers.link

"""Implements the Link class and the LinkContainer."""

import logging

from ..utils import Link
from ..mixins import CheckDataMixin
from .general import ObjectContainer, PassthroughContainer

log = logging.getLogger(__name__)

# -----------------------------------------------------------------------------