mirror of
				https://github.com/bunny-lab-io/Borealis.git
				synced 2025-10-26 15:41:58 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			534 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			534 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Borealis Engine runtime package.
 | |
| 
 | |
| This package houses the next-generation server runtime that will gradually
 | |
| replace :mod:`Data.Server.server`. Stage 1 delivered the structural skeleton
 | |
| for the Flask/Socket.IO factory; Stage 2 layers in configuration loading and
 | |
| logging parity via :mod:`Data.Engine.config` so Engine launches honour the
 | |
| same environment variables and log destinations as the legacy server.
 | |
| """
 | |
| 
 | |
| from .server import create_app, EngineContext  # re-export for convenience
 | |
| 
 | |
| __all__ = ["create_app", "EngineContext"]
 |