diff options
| -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 |
