mirror of
https://github.com/safing/portmaster
synced 2025-04-08 04:59:10 +00:00
10 lines
298 B
Go
10 lines
298 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package windowskext
|
|
|
|
import "github.com/safing/portmaster/windows_kext/kextinterface"
|
|
|
|
func createKextService(driverName string, driverPath string) (*kextinterface.KextService, error) {
|
|
return kextinterface.CreateKextService(driverName, driverPath)
|
|
}
|