mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-04-13 18:11:03 +08:00
- Add passkey login as alternative authentication method - Support multiple passkeys per user with custom names - Backend: WebAuthn service, auth strategy pattern, API endpoints - Frontend: passkey management UI in settings, login option - Fix: convert downloader check from sync requests to async httpx to prevent blocking the event loop when downloader unavailable Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
8 lines
368 B
Python
8 lines
368 B
Python
from .bangumi import Bangumi, BangumiUpdate, Episode, Notification
|
|
from .config import Config
|
|
from .passkey import Passkey, PasskeyCreate, PasskeyDelete, PasskeyList
|
|
from .response import APIResponse, ResponseModel
|
|
from .rss import RSSItem, RSSUpdate
|
|
from .torrent import EpisodeFile, SubtitleFile, Torrent, TorrentUpdate
|
|
from .user import User, UserLogin, UserUpdate
|