mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-10 19:42:58 +00:00
14 lines
333 B
Python
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
|