Added route for saving device info

This commit is contained in:
Nedim
2023-09-12 18:28:18 +02:00
parent 32c0cd1ffc
commit 386f051d67
7 changed files with 74 additions and 18 deletions

View File

@@ -1,12 +0,0 @@
package sensor
import (
"fmt"
)
func SensorService(ch chan string) {
for msg := range ch {
fmt.Println("Sensor Service: ", msg)
}
}