mihomo/rules/process_other.go
2020-08-06 19:59:20 +08:00

13 lines
232 B
Go

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