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