fix: fixes cgo newline

This commit is contained in:
Simone Margaritelli 2024-08-07 17:59:58 +02:00
commit 6951fbb8dd

View file

@ -8,7 +8,6 @@ package network
const char *GetSupportedFrequencies(const char *iface);
bool SetInterfaceChannel(const char *iface, int channel);
*/
import "C"
import (
"encoding/json"
@ -52,4 +51,4 @@ func GetSupportedFrequencies(iface string) ([]int, error) {
}
return frequencies, nil
}
}