mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-01-24 05:28:36 -06:00
14 lines
306 B
Go
14 lines
306 B
Go
package executions
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/eduardolat/pgbackweb/internal/database/dbgen"
|
|
)
|
|
|
|
func (s *Service) UpdateExecution(
|
|
ctx context.Context, params dbgen.ExecutionsServiceUpdateExecutionParams,
|
|
) (dbgen.Execution, error) {
|
|
return s.dbgen.ExecutionsServiceUpdateExecution(ctx, params)
|
|
}
|