summaryrefslogtreecommitdiffhomepage
path: root/libs/tld/registry.py
blob: 857a8cff717c77010c83d0c72e532e31d6f7022b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import warnings

from .base import Registry  # noqa

__author__ = "Artur Barseghyan"
__copyright__ = "2013-2023 Artur Barseghyan"
__license__ = "MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later"
__all__ = ("Registry",)

warnings.warn(
    "The `Registry` class is moved from `tld.registry` to `tld.base`.",
    DeprecationWarning,
)