refacto: rename app into backend, to prepare for frontend dev

This commit is contained in:
Alexis Fourmaux 2026-05-11 21:09:49 +02:00
parent 017092040d
commit e605bf8603
32 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,10 @@
from core.logging import setup_logging
from dependencies import get_uplink_service, get_mqtt_broker
setup_logging()
if __name__ == "__main__":
broker = get_mqtt_broker()
uplink = get_uplink_service()
broker.start(on_uplink=uplink.handle)