github.com/lzy4123/fabric@v2.1.1+incompatible/cmd/orderer/main.go (about) 1 /* 2 Copyright IBM Corp. 2017 All Rights Reserved. 3 4 SPDX-License-Identifier: Apache-2.0 5 */ 6 7 // Package main is the entrypoint for the orderer binary 8 // and calls only into the server.Main() function. No other 9 // function should be included in this package. 10 package main 11 12 import "github.com/hyperledger/fabric/orderer/common/server" 13 14 func main() { 15 server.Main() 16 }