[#574] morph: Add DeletionInfo method for morph client

Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
This commit is contained in:
Airat Arifullin 2023-08-18 17:12:24 +03:00
parent 62c2ad4b22
commit 42fb6fb372
3 changed files with 62 additions and 0 deletions

View file

@ -20,6 +20,15 @@ type Container struct {
Session *session.Container
}
// DelInfo contains info about removed container.
type DelInfo struct {
// Container owner.
Owner []byte
// Epoch indicates when the container was removed.
Epoch int
}
// Source is an interface that wraps
// basic container receiving method.
type Source interface {