github.com/osdi23p228/fabric@v0.0.0-20221218062954-77808885f5db/orderer/common/server/signals_windows.go (about) 1 // +build windows 2 3 /* 4 Copyright IBM Corp. All Rights Reserved. 5 6 SPDX-License-Identifier: Apache-2.0 7 */ 8 9 package server 10 11 import ( 12 "os" 13 ) 14 15 func addPlatformSignals(sigs map[os.Signal]func()) map[os.Signal]func() { 16 return sigs 17 }