diff options
| author | 2025-11-16 00:00:00 +0000 | |
|---|---|---|
| committer | 2025-11-16 00:00:00 +0000 | |
| commit | 3538f77254a2d1bfbb2121d16c9f19dd7498bb6f (patch) | |
| tree | dd329081d6014b8c0a7f13e91e807b381d9cafe7 | |
| parent | Documentation overhaul (diff) | |
| signature | ||
repo is thread safe
| -rw-r--r-- | repo.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -13,6 +13,9 @@ import ( ) // Repository represents a Git repository. +// +// It is safe to access the same Repository from multiple goroutines +// without additional synchronization. type Repository struct { rootPath string hashSize int |
