Patch du service MQTT pour supprimer la méthode de test (2)

This commit is contained in:
Jérémy CHOMAZ 2024-12-23 21:59:13 +01:00
parent 60789f440c
commit 370968cb2b

View File

@ -15,4 +15,4 @@ export function subscribeToTopic(topic, callback) {
client.subscribe(topic)
client.on('message', (receivedTopic, message) => { callback(receivedTopic.toString(), message.toString())
})
}
}