Fix moveFiles for zip files (#3608)

This commit is contained in:
DingDongSoLong4
2023-03-29 00:28:11 +02:00
committed by GitHub
parent 046fd1c0be
commit a8f9310c0f
5 changed files with 109 additions and 12 deletions

View File

@@ -180,6 +180,11 @@ type Destroyer interface {
Destroy(ctx context.Context, id ID) error
}
type GetterUpdater interface {
Getter
Updater
}
type GetterDestroyer interface {
Getter
Destroyer