1 Star 0 Fork 0

peter / fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
templates.go 861 Bytes
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package nwo
// Templates can be used to provide custom templates to GenerateConfigTree.
type Templates struct {
ConfigTx string `yaml:"configtx,omitempty"`
Core string `yaml:"core,omitempty"`
Crypto string `yaml:"crypto,omitempty"`
Orderer string `yaml:"orderer,omitempty"`
}
func (t *Templates) ConfigTxTemplate() string {
if t.ConfigTx != "" {
return t.ConfigTx
}
return DefaultConfigTxTemplate
}
func (t *Templates) CoreTemplate() string {
if t.Core != "" {
return t.Core
}
return DefaultCoreTemplate
}
func (t *Templates) CryptoTemplate() string {
if t.Crypto != "" {
return t.Crypto
}
return DefaultCryptoTemplate
}
func (t *Templates) OrdererTemplate() string {
if t.Orderer != "" {
return t.Orderer
}
return DefaultOrdererTemplate
}
1
https://gitee.com/peter_code_git/fabric.git
git@gitee.com:peter_code_git/fabric.git
peter_code_git
fabric
fabric
v1.4.7

搜索帮助

53164aa7 5694891 3bd8fe86 5694891