Urgh
This commit is contained in:
@@ -3,6 +3,7 @@ import os
|
||||
from dotenv import load_dotenv
|
||||
from flask import Flask
|
||||
|
||||
from src.controllers.AuthController import AuthController
|
||||
from src.controllers.ClientController import ClientController
|
||||
from src.controllers.mqtt_forwarder import MQTTForwarder
|
||||
from src.services.mqtt_service import MQTTService
|
||||
@@ -18,6 +19,7 @@ local_broker_port = int(os.environ.get("LOCAL_BROKER_PORT", 1883))
|
||||
api_broker_address = os.environ.get("API_BROKER_ADDRESS", "127.0.0.1")
|
||||
api_broker_port = int(os.environ.get("API_BROKER_PORT", 1883))
|
||||
|
||||
auth_controller = AuthController(app)
|
||||
client_controller = ClientController(app)
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
Reference in New Issue
Block a user