(ctx context.Context, id ksuid.KSUID, name string)
| 90 | } |
| 91 | |
| 92 | func (e *Environment) CommitObject(ctx context.Context, id ksuid.KSUID, name string) (ksuid.KSUID, error) { |
| 93 | if e.db != nil { |
| 94 | return e.db.CommitObject(ctx, id, name) |
| 95 | } |
| 96 | return ksuid.Nil, nil |
| 97 | } |
| 98 | |
| 99 | func (e *Environment) SortKeys(ctx context.Context, src dag.Op) order.SortKeys { |
| 100 | if e.db != nil { |
nothing calls this directly
no test coverage detected