mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-01-23 21:19:31 -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) CreateExecution(
|
|
ctx context.Context, params dbgen.ExecutionsServiceCreateExecutionParams,
|
|
) (dbgen.Execution, error) {
|
|
return s.dbgen.ExecutionsServiceCreateExecution(ctx, params)
|
|
}
|