mihomo/rules/process_other.go
2020-07-19 13:18:23 +08:00

12 lines
190 B
Go

// +build !darwin
package rules
import (
C "github.com/Dreamacro/clash/constant"
)
func NewProcess(process string, adapter string) (C.Rule, error) {
return nil, ErrPlatformNotSupport
}