3b751a35c5
Removes database tables and functionality related to our custom coupon implementation because it has been superseded by the Stripe coupon and promo code system. Requires implementations of the payments Invoices interface to return coupon usages along with invoices. Change-Id: Iac52d2ff64afca8cc4dbb2d1f20e6ad4b39ddfde
17 lines
443 B
Go
17 lines
443 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package stripecoinpayments
|
|
|
|
// 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
|
|
}
|