(ctx context.Context, poolID ksuid.KSUID, branchName string)
| 132 | } |
| 133 | |
| 134 | func (l *local) CommitObject(ctx context.Context, poolID ksuid.KSUID, branchName string) (ksuid.KSUID, error) { |
| 135 | return l.db.CommitObject(ctx, poolID, branchName) |
| 136 | } |
| 137 | |
| 138 | func (l *local) lookupBranch(ctx context.Context, poolID ksuid.KSUID, branchName string) (*db.Pool, *db.Branch, error) { |
| 139 | pool, err := l.db.OpenPool(ctx, poolID) |
nothing calls this directly
no test coverage detected