github.com/hechain20/hechain@v0.0.0-20220316014945-b544036ba106/cmd/orderer/main.go (about)

     1  /*
     2  Copyright hechain. 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/hechain20/hechain/orderer/common/server"
    13  
    14  func main() {
    15  	server.Main()
    16  }