11 lines
235 B
Go
11 lines
235 B
Go
|
// Copyright (c) HashiCorp, Inc.
|
||
|
// SPDX-License-Identifier: MPL-2.0
|
||
|
|
||
|
package logical
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type ACMEBillingSystemView interface {
|
||
|
CreateActivityCountEventForIdentifiers(ctx context.Context, identifiers []string) error
|
||
|
}
|