mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 14:44:29 -04:00
15 lines
289 B
Python
15 lines
289 B
Python
from typing import List, Generator
|
|
|
|
from archivebox.util import enforce_types
|
|
|
|
@enforce_types
|
|
def index(snapshot_id: str, texts: List[str]):
|
|
pass
|
|
|
|
@enforce_types
|
|
def search(text: str) -> List[str]:
|
|
pass
|
|
|
|
@enforce_types
|
|
def flush(snapshot_ids: Generator[str, None, None]):
|
|
pass
|