Files
docker-stacks/tagging/tagger_interface.py
2021-03-20 21:02:21 +03:00

14 lines
333 B
Python

# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
class TaggerInterface:
"""HooksInterface for all hooks common interface"""
@staticmethod
def tag_value(image):
raise NotImplementedError
@staticmethod
def tag_name():
raise NotImplementedError