mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 19:54:32 +00:00
- Add build-context helper to copy Docker context safely (ignore runtime data, keep symlinks) - Update UI and core actions to use ~/.prole/build and shared copy helper - Add/adjust tests and scripts; introduce knoe ops helpers and update manifests Co-authored-by: Junie <junie@jetbrains.com>
7 lines
256 B
Python
7 lines
256 B
Python
"""Backward-compatibility shim for legacy_tk imports."""
|
|
|
|
from knoe.ui import screens as _screens
|
|
|
|
globals().update({k: v for k, v in _screens.__dict__.items() if not k.startswith("__")})
|
|
__all__ = [name for name in globals() if not name.startswith("__")]
|