Disallow subscribing to /docs
This commit is contained in:
		
							parent
							
								
									9a56c24dbe
								
							
						
					
					
						commit
						b437a87266
					
				
					 2 changed files with 16 additions and 2 deletions
				
			
		
							
								
								
									
										10
									
								
								util/util.go
									
										
									
									
									
								
							
							
						
						
									
										10
									
								
								util/util.go
									
										
									
									
									
								
							|  | @ -23,6 +23,16 @@ func FileExists(filename string) bool { | |||
| 	return stat != nil | ||||
| } | ||||
| 
 | ||||
| // InStringList returns true if needle is contained in haystack | ||||
| func InStringList(haystack []string, needle string) bool { | ||||
| 	for _, s := range haystack { | ||||
| 		if s == needle { | ||||
| 			return true | ||||
| 		} | ||||
| 	} | ||||
| 	return false | ||||
| } | ||||
| 
 | ||||
| // RandomString returns a random string with a given length | ||||
| func RandomString(length int) string { | ||||
| 	randomMutex.Lock() // Who would have thought that random.Intn() is not thread-safe?! | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue