"""
Link Checker Package

A comprehensive package for checking link status across different platforms.
Provides unified interface for link verification, content fetching, and status analysis.
"""

from .core import LinkChecker
from .config import get_config
from .exceptions import LinkCheckerError, ConfigurationError

__version__ = "1.0.0"
__author__ = "Santhosh Kasturi"

__all__ = [
    'LinkChecker',
    'get_config', 
    'LinkCheckerError',
    'ConfigurationError'
]
