mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
15 lines
378 B
Go
15 lines
378 B
Go
package commands
|
|
|
|
import "github.com/hyperledger/fabric-gateway/pkg/client"
|
|
|
|
type Command func(gw *client.Gateway, args []string) error
|
|
|
|
var Commands = map[string]Command{
|
|
"create": cmdCreate,
|
|
"delete": cmdDelete,
|
|
"getAllAssets": cmdGetAllAssets,
|
|
"listen": cmdListen,
|
|
"read": cmdRead,
|
|
"transact": cmdTransact,
|
|
"transfer": cmdTransfer,
|
|
}
|