23 lines
446 B
Go
23 lines
446 B
Go
/*
|
|
Copyright IBM Corp. All Rights Reserved.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/hyperledger/fabric/bccsp/factory"
|
|
"github.com/hyperledger/fabric/cmd/common"
|
|
discovery "github.com/hyperledger/fabric/discovery/cmd"
|
|
)
|
|
|
|
func main() {
|
|
factory.InitFactories(nil)
|
|
cli := common.NewCLI("discover", "Command line client for fabric discovery service")
|
|
discovery.AddCommands(cli)
|
|
cli.Run(os.Args[1:])
|
|
}
|