mirror of
				https://github.com/optim-enterprises-bv/openlan-cgw.git
				synced 2025-10-31 18:27:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			163 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			163 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env python3
 | |
| from src.utils import parse_args
 | |
| from src.simulation_runner import main
 | |
| 
 | |
| 
 | |
| if __name__ == "__main__":
 | |
|     args = parse_args()
 | |
|     main(args)
 | 
