working commit

This commit is contained in:
2026-06-07 18:19:15 +02:00
parent d3556d397c
commit 0506b35cd1
26 changed files with 199 additions and 1299 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ func (hand *Handler) GetDump(ctx context.Context, params *mbctl.GetDumpParams) (
if err != nil {
return res, err
}
res, err = hand.lg.GetDump(ctx, accountID, params)
res, err = hand.oper.GetDump(ctx, accountID, params)
return res, err
}
@@ -26,6 +26,6 @@ func (hand *Handler) RestoreDump(ctx context.Context, params *mbctl.RestoreDumpP
if err != nil {
return res, err
}
res, err = hand.lg.RestoreDump(ctx, accountID, params)
res, err = hand.oper.RestoreDump(ctx, accountID, params)
return res, err
}