Initial commit

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Todd
2026-03-29 22:42:55 -04:00
commit 0d7b2b1aab
389 changed files with 280296 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
"""Backwards-compatibility shim — use xenforo_forum_client instead."""
from .xenforo_forum_client import XenForoForumClient
class HQCelebCornerClient(XenForoForumClient):
"""Legacy alias for XenForoForumClient, pre-configured for HQCelebCorner."""
def __init__(self, log_callback=None):
super().__init__(
service_id='hqcelebcorner',
base_url='https://www.hqcelebcorner.net',
cookie_path='/opt/media-downloader/cookies/forum_cookies_HQCelebCorner.json',
log_callback=log_callback,
)