├── .travis.yml ├── LICENSE.txt ├── README.md ├── go.mod ├── savepoint ├── savepoint.go └── savepoint_test.go ├── txmanager.go └── txmanager_test.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shogo82148/txmanager/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shogo82148/txmanager/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shogo82148/txmanager/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/shogo82148/txmanager 2 | -------------------------------------------------------------------------------- /savepoint/savepoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shogo82148/txmanager/HEAD/savepoint/savepoint.go -------------------------------------------------------------------------------- /savepoint/savepoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shogo82148/txmanager/HEAD/savepoint/savepoint_test.go -------------------------------------------------------------------------------- /txmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shogo82148/txmanager/HEAD/txmanager.go -------------------------------------------------------------------------------- /txmanager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shogo82148/txmanager/HEAD/txmanager_test.go --------------------------------------------------------------------------------