Files
ArchiveBox/archivebox/pkgs/abx-plugin-curl/abx_plugin_curl/__init__.py
2024-10-28 20:05:20 -07:00

19 lines
259 B
Python

import abx
@abx.hookimpl
def get_CONFIG():
from .config import CURL_CONFIG
return {
'curl': CURL_CONFIG
}
@abx.hookimpl
def get_BINARIES():
from .binaries import CURL_BINARY
return {
'curl': CURL_BINARY,
}