mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-19 12:01:07 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1364 e7d03fd6-7b0d-0410-9947-9c21f3af8025
21 lines
357 B
Python
21 lines
357 B
Python
# -*- coding: iso-8859-1 -*-
|
|
# $Id$
|
|
#
|
|
# This file is part of the pydns project.
|
|
# Homepage: http://pydns.sourceforge.net
|
|
#
|
|
# This code is covered by the standard Python License.
|
|
#
|
|
|
|
# __init__.py for DNS class.
|
|
|
|
__version__ = '2.3.0'
|
|
|
|
import Base
|
|
import Lib
|
|
|
|
Error = Base.DNSError
|
|
Request = Base.DnsRequest
|
|
Result = Lib.DnsResult
|
|
|
|
Base.DiscoverNameServers()
|