forked from rc/aircox
		
	- Writes tests for aircox streamer application; - Add test utilities in aircox Co-authored-by: bkfox <thomas bkfox net> Reviewed-on: rc/aircox#110
		
			
				
	
	
		
			11 lines
		
	
	
		
			172 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			172 B
		
	
	
	
		
			Python
		
	
	
	
	
	
registered = []
 | 
						|
"""Items registered by register()"""
 | 
						|
 | 
						|
 | 
						|
def register(func, *args, **kwargs):
 | 
						|
    registered.append(func)
 | 
						|
 | 
						|
 | 
						|
def unregister(func):
 | 
						|
    registered.remove(func)
 |