Files
pgbackweb/internal/service/executions/get_execution.go
2024-08-04 18:57:14 -06:00

15 lines
306 B
Go

package executions
import (
"context"
"github.com/eduardolat/pgbackweb/internal/database/dbgen"
"github.com/google/uuid"
)
func (s *Service) GetExecution(
ctx context.Context, id uuid.UUID,
) (dbgen.ExecutionsServiceGetExecutionRow, error) {
return s.dbgen.ExecutionsServiceGetExecution(ctx, id)
}