Skip to content
Snippets Groups Projects
Commit 64bbe6bb authored by Antoine Lambert's avatar Antoine Lambert
Browse files

Remove unused interface.py file

parent 13181d59
No related branches found
No related tags found
3 merge requests!69cli: Add support for scrubbbing an object storage,!66objstorage_checker: Use check method from object storage interface,!65objstorage_checker: Add support for consuming content ids from journal
# Copyright (C) 2024 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
from typing_extensions import Protocol, runtime_checkable
from swh.core.statsd import Statsd
from .db import ConfigEntry, Datastore
@runtime_checkable
class CheckerInterface(Protocol):
@property
def config(self) -> ConfigEntry:
...
@property
def datastore(self) -> Datastore:
...
@property
def statsd(self) -> Statsd:
...
def run(self) -> None:
...
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment