Commit 3a162b27 by adamtorok

Snapshot manager added

parent 221d5cf2
class SnapshotManager:
def __init__(self) -> None:
super().__init__()
def create_from_volume(self, id):
raise NotImplementedError
def get(self, id):
raise NotImplementedError
def list(self):
raise NotImplementedError
def delete(self, id):
raise NotImplementedError
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment