github.com/myafeier/fabric@v1.0.1-0.20170722181825-3a4b1f2bce86/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  }