diff --git a/pkg/common/msgpack.go b/pkg/common/msgpack.go index eb52f4e..b29643e 100644 --- a/pkg/common/msgpack.go +++ b/pkg/common/msgpack.go @@ -15,4 +15,3 @@ func MsgpackMarshal(v interface{}) ([]byte, error) { func MsgpackUnmarshal(data []byte, v interface{}) error { return msgpack.Unmarshal(data, v) } - diff --git a/pkg/interfaces/auto_tinygo.go b/pkg/interfaces/auto_tinygo.go index 5e06327..cad8050 100644 --- a/pkg/interfaces/auto_tinygo.go +++ b/pkg/interfaces/auto_tinygo.go @@ -94,4 +94,3 @@ func (ai *AutoInterface) Stop() error { ai.Online = false return nil } - diff --git a/pkg/interfaces/kiss.go b/pkg/interfaces/kiss.go index 6f6a5bd..94724a6 100644 --- a/pkg/interfaces/kiss.go +++ b/pkg/interfaces/kiss.go @@ -22,4 +22,3 @@ func escapeKISS(data []byte) []byte { } return escaped } - diff --git a/pkg/interfaces/lora_stub.go b/pkg/interfaces/lora_stub.go index e56bdb2..1a5cc49 100644 --- a/pkg/interfaces/lora_stub.go +++ b/pkg/interfaces/lora_stub.go @@ -27,4 +27,3 @@ func (li *LoRaInterface) Stop() error { func (li *LoRaInterface) Send(data []byte, address string) error { return fmt.Errorf("LoRaInterface is only supported on TinyGo targets currently") } - diff --git a/pkg/interfaces/lora_tinygo.go b/pkg/interfaces/lora_tinygo.go index 603145f..ae7c043 100644 --- a/pkg/interfaces/lora_tinygo.go +++ b/pkg/interfaces/lora_tinygo.go @@ -290,4 +290,3 @@ func (li *LoRaInterface) Stop() error { return nil } - diff --git a/pkg/interfaces/serial_stub.go b/pkg/interfaces/serial_stub.go index c396434..d68a855 100644 --- a/pkg/interfaces/serial_stub.go +++ b/pkg/interfaces/serial_stub.go @@ -27,4 +27,3 @@ func (si *SerialInterface) Stop() error { func (si *SerialInterface) Send(data []byte, address string) error { return fmt.Errorf("SerialInterface is only supported on TinyGo targets currently") } - diff --git a/pkg/interfaces/serial_tinygo.go b/pkg/interfaces/serial_tinygo.go index a6e892e..ea21d3e 100644 --- a/pkg/interfaces/serial_tinygo.go +++ b/pkg/interfaces/serial_tinygo.go @@ -219,4 +219,3 @@ func (si *SerialInterface) SendKISS(command byte, data []byte) error { return nil } - diff --git a/pkg/interfaces/tcp_common.go b/pkg/interfaces/tcp_common.go index f2c4e26..f71436f 100644 --- a/pkg/interfaces/tcp_common.go +++ b/pkg/interfaces/tcp_common.go @@ -22,4 +22,3 @@ func (tc *TCPClientInterface) setTimeoutsLinux() error { func (tc *TCPClientInterface) setTimeoutsOSX() error { return nil } - diff --git a/pkg/interfaces/udp_tinygo.go b/pkg/interfaces/udp_tinygo.go index fe14bdd..946fc2e 100644 --- a/pkg/interfaces/udp_tinygo.go +++ b/pkg/interfaces/udp_tinygo.go @@ -66,4 +66,3 @@ func (ui *UDPInterface) Stop() error { ui.Online = false return nil } -