Restructure of BEC Widgets
Restructure of the repo to have widgets and their components together.
The new structure could look like:
.
└── bec_widgets/
├── assets(global assets)/
│ ├── icons
│ └── background
├── examples/
│ ├── example 1
│ └── example 2
├── utils/
│ ├── __init__.py
│ ├── bec_connector.py
│ └── ...
├── cli/
│ ├── server
│ ├── client_utils
│ ├── rpc_register
│ └── auto_updates
└── widgets/
├── widget1/
│ ├── __init__.py
│ ├── widget1.py
│ ├── widget1.ui
│ ├── cli_widget1.py
│ ├── widget1.css
│ ├── widget1.png
│ └── dependecy package (same structure as widgets if neccessary)
└── figure (example)/
├── __init__.py
├── figure.py
├── cli_figure.py
├── figure.ui
└── plots/
└── waveform/
├── waveform.py
├── waveform_cli.py
└── waveform.ui
Edited by wyzula_j