From 96317743391ac87aeb07d292469e212671628437 Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Sat, 2 Feb 2019 10:14:24 +0100 Subject: storage: transactional, package documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Máximo Cuadros --- storage/transactional/doc.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 storage/transactional/doc.go (limited to 'storage/transactional/doc.go') diff --git a/storage/transactional/doc.go b/storage/transactional/doc.go new file mode 100644 index 0000000..3a68f5f --- /dev/null +++ b/storage/transactional/doc.go @@ -0,0 +1,7 @@ +// Package transactional is a transactional implementation of git.Storer, it +// demux the write and read operation of two separate storers, allowing to merge +// content calling Storage.Commit. +// +// The API and functionality of this package are considered EXPERIMENTAL and is +// not considered stable nor production ready. +package transactional -- cgit