8a50a3baa3
Automatic rename. May require some more cleanups later. Change-Id: I18220a4278056d25c41fb137832bb81f2b876ac1
17 lines
431 B
Go
17 lines
431 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package stripe
|
|
|
|
// DB is stripecoinpayments DB interface.
|
|
//
|
|
// architecture: Database
|
|
type DB interface {
|
|
// Customers is getter for customers db.
|
|
Customers() CustomersDB
|
|
// Transactions is getter for transactions db.
|
|
Transactions() TransactionsDB
|
|
// ProjectRecords is getter for invoice project records db.
|
|
ProjectRecords() ProjectRecordsDB
|
|
}
|