mihomo/rules/process_other.go

13 lines
223 B
Go
Raw Normal View History

// +build !darwin,!linux
// +build !freebsd !amd64
2020-07-19 13:17:05 +08:00
package rules
import (
C "github.com/Dreamacro/clash/constant"
)
func NewProcess(process string, adapter string) (C.Rule, error) {
return nil, ErrPlatformNotSupport
}