clash/rules/process_other.go

11 lines
197 B
Go

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