2020-07-22 19:05:10 +08:00
|
|
|
// +build !darwin,!linux
|
2020-07-31 20:01:19 +08:00
|
|
|
// +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
|
|
|
|
}
|