File size: 409 Bytes
0e24aff
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
"""OpenEnv root client shim — re-exports ``physix.client``.

OpenEnv's CLI validator and auto-discovery expect ``client.py`` at the
env-directory root. The real implementation lives in
``physix/client.py``; this file just re-exports it so the OpenEnv
contract is satisfied without duplicating any code.
"""

from physix.client import PhysiXEnv, PhysixEnv  # noqa: F401

__all__ = ["PhysiXEnv", "PhysixEnv"]