mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-20 23:21:06 +02:00
7 lines
223 B
Python
7 lines
223 B
Python
"""Scraper capability registry — typed, stateless verbs. See plans/backend/04-capabilities.md."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from app.capabilities import amazon as _amazon # noqa: F401
|
|
|
|
__all__: list[str] = []
|