github.com/hechain20/hechain@v0.0.0-20220316014945-b544036ba106/orderer/common/server/signals_windows.go (about)

     1  //go:build windows
     2  // +build windows
     3  
     4  /*
     5  Copyright hechain. All Rights Reserved.
     6  
     7  SPDX-License-Identifier: Apache-2.0
     8  */
     9  
    10  package server
    11  
    12  import (
    13  	"os"
    14  )
    15  
    16  func addPlatformSignals(sigs map[os.Signal]func()) map[os.Signal]func() {
    17  	return sigs
    18  }