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