Exec executes the query.
(ctx context.Context)
| 176 | |
| 177 | // Exec executes the query. |
| 178 | func (gcc *GitCommitCreate) Exec(ctx context.Context) error { |
| 179 | _, err := gcc.Save(ctx) |
| 180 | return err |
| 181 | } |
| 182 | |
| 183 | // ExecX is like Exec, but panics if an error occurs. |
| 184 | func (gcc *GitCommitCreate) ExecX(ctx context.Context) { |