mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-02-09 05:38:28 -06:00
15 lines
283 B
Go
15 lines
283 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.Execution, error) {
|
|
return s.dbgen.ExecutionsServiceGetExecution(ctx, id)
|
|
}
|