Feature: support PROCESS-NAME on macOS

This commit is contained in:
Dreamacro
2020-07-19 13:17:05 +08:00
parent cf9e1545a4
commit ae1e1dc9f6
6 changed files with 194 additions and 2 deletions

11
rules/process_other.go Normal file
View File

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