(ctx context.Context, repo string)
| 70 | } |
| 71 | |
| 72 | func Open(ctx context.Context, repo string) (*Repository, error) { |
| 73 | return OpenWithBasePath(ctx, repo, cuGlobalConfigPath) |
| 74 | } |
| 75 | |
| 76 | // OpenWithBasePath opens a repository with a custom base path for container-use data. |
| 77 | // This is useful for tests that need isolated environments. |