mihomo/rules/process_other.go
2020-07-31 20:01:19 +08:00

12 lines
223 B
Go

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