mirror of
				https://github.com/mickael-kerjean/filestash.git
				synced 2025-10-31 10:07:15 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			147 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			147 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package common
 | |
| 
 | |
| import (
 | |
| 	"os"
 | |
| )
 | |
| 
 | |
| func IsApiKeyValid(api_key string) bool {
 | |
| 	if api_key == os.Getenv("API_KEY") {
 | |
| 		return true
 | |
| 	}
 | |
| 	return false
 | |
| }
 | 
