backend: move NetworkBackend and ABackend into backend/ folder

- network_backend.py -> backend/network.py
- a_backend.py -> backend/a_backend.py
- update all imports accordingly

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-25 11:16:23 +02:00
co-authored by Claude Sonnet 4.6
parent c5ec65f2d6
commit 53ed665f44
6 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
from a_transceiver import ATransceiver
from msg.container import MsgContainer
from msg.talker import MsgTalker
from a_backend import ABackend
from backend.a_backend import ABackend
class Transceiver(ATransceiver, MsgTalker):