package utils import "log" func SendError(devs []int) { for _, dev := range devs { log.Println(dev) } } // 169837862