mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 10:37:56 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			223 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			223 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) HashiCorp, Inc.
 | |
| // SPDX-License-Identifier: MPL-2.0
 | |
| 
 | |
| //go:build windows
 | |
| 
 | |
| package command
 | |
| 
 | |
| // MakeSigUSR2Ch does nothing useful on Windows.
 | |
| func MakeSigUSR2Ch() chan struct{} {
 | |
| 	return make(chan struct{})
 | |
| }
 | 
