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

@@ -2,10 +2,8 @@ package interception
import "github.com/safing/portmaster/network/packet"
var (
// 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 {