diff options
Diffstat (limited to 'plumbing/storer')
-rw-r--r-- | plumbing/storer/storer.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plumbing/storer/storer.go b/plumbing/storer/storer.go index c7bc65a..1b7d226 100644 --- a/plumbing/storer/storer.go +++ b/plumbing/storer/storer.go @@ -13,3 +13,9 @@ type Initializer interface { // any. Init() error } + +// Options holds configuration for the storage. +type Options struct { + // Static means that the filesystem is not modified while the repo is open. + Static bool +} |