mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-02-11 14:48:35 -06:00
15 lines
313 B
Go
15 lines
313 B
Go
package executions
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/eduardolat/pgbackweb/internal/database/dbgen"
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
func (s *Service) ListBackupExecutions(
|
|
ctx context.Context, backupID uuid.UUID,
|
|
) ([]dbgen.Execution, error) {
|
|
return s.dbgen.ExecutionsServiceListBackupExecutions(ctx, backupID)
|
|
}
|