mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 03:34:15 +02:00
11 lines
271 B
Python
11 lines
271 B
Python
"""
|
|
Temporary namespace migration shim.
|
|
|
|
Canonical implementation still lives in the `bauh` package.
|
|
New code should import from `bearhub` whenever possible.
|
|
"""
|
|
|
|
from bauh import __app_name__, __version__, ROOT_DIR
|
|
|
|
__all__ = ["__app_name__", "__version__", "ROOT_DIR"]
|