17 lines
405 B
Go
17 lines
405 B
Go
/*
|
|
Copyright IBM Corp. All Rights Reserved.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
package privdata
|
|
|
|
import "github.com/hyperledger/fabric/common/channelconfig"
|
|
|
|
// appCapabilities local interface used to generate mock for foreign interface.
|
|
//
|
|
//go:generate mockery -dir ./ -name AppCapabilities -case underscore -output mocks/
|
|
type AppCapabilities interface {
|
|
channelconfig.ApplicationCapabilities
|
|
}
|