mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 18:12:24 -05:00 
			
		
		
		
	
		
			
	
	
		
			14 lines
		
	
	
	
		
			191 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			14 lines
		
	
	
	
		
			191 B
		
	
	
	
		
			Go
		
	
	
	
	
	
|  | package debug | ||
|  | 
 | ||
|  | // DEBUG returns whether debugging is enabled. | ||
|  | func DEBUG() bool { | ||
|  | 	return debug | ||
|  | } | ||
|  | 
 | ||
|  | // Run will only call fn if DEBUG is enabled. | ||
|  | func Run(fn func()) { | ||
|  | 	if debug { | ||
|  | 		fn() | ||
|  | 	} | ||
|  | } |