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
+6
View File
@@ -0,0 +1,6 @@
from abc import ABC
from a_transceiver import ATransceiver
class ABackend(ABC):
def send(self, xcr: ATransceiver, data: bytes):
pass