clash/rules/process_other.go

13 lines
232 B
Go
Raw Normal View History

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