Fix windowskext linter errors

This commit is contained in:
Daniel
2020-04-10 13:18:37 +02:00
parent ddc01e648f
commit fd4f059ebb
5 changed files with 29 additions and 29 deletions

View File

@@ -11,12 +11,8 @@ import (
"github.com/safing/portmaster/updates"
)
var Packets chan packet.Packet
func init() {
// Packets channel for feeding the firewall.
Packets = make(chan packet.Packet, 1000)
}
// Packets channel for feeding the firewall.
var Packets = make(chan packet.Packet, 1000)
// Start starts the interception.
func Start() error {