Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-scrubber
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Platform
Development
swh-scrubber
Commits
64bbe6bb
Commit
64bbe6bb
authored
11 months ago
by
Antoine Lambert
Browse files
Options
Downloads
Patches
Plain Diff
Remove unused interface.py file
parent
13181d59
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!69
cli: Add support for scrubbbing an object storage
,
!66
objstorage_checker: Use check method from object storage interface
,
!65
objstorage_checker: Add support for consuming content ids from journal
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
swh/scrubber/interface.py
+0
-29
0 additions, 29 deletions
swh/scrubber/interface.py
with
0 additions
and
29 deletions
swh/scrubber/interface.py
deleted
100644 → 0
+
0
−
29
View file @
13181d59
# 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
:
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment