mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
13 lines
232 B
Go
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
|
|
}
|