Files
pgbackweb/internal/service/executions/list_backup_executions.go
2024-07-21 17:28:29 -06:00

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)
}