#!/usr/bin/env python3
"""
Re-export from backend.services.browser_service. Canonical: backend/services/browser_service.py
"""
from backend.services.browser_service import (
    AumentumBrowserService,
    DEFAULT_DB_CONFIG,
    DEFAULT_CONTENTSTORE_BASE,
    get_contentstore_base,
    validate_configuration,
    _get_pyodbc,
)

__all__ = [
    "AumentumBrowserService",
    "DEFAULT_DB_CONFIG",
    "DEFAULT_CONTENTSTORE_BASE",
    "get_contentstore_base",
    "validate_configuration",
    "_get_pyodbc",
]
