1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2025-07-02 20:28:38 -04:00

Take unexported database methods 'private'

This commit is contained in:
2017-12-09 06:06:20 -05:00
parent e89198fe2e
commit c4d2fe27e6
3 changed files with 15 additions and 13 deletions

View File

@ -117,6 +117,7 @@ type Tx interface {
}
type Store interface {
Empty() error
Begin() (Tx, error)
Close() error
}