mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
14 lines
206 B
Go
14 lines
206 B
Go
//go:build !linux && !windows && !darwin
|
|
|
|
package process
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/sagernet/sing-box/log"
|
|
)
|
|
|
|
func NewSearcher(logger log.ContextLogger) (Searcher, error) {
|
|
return nil, os.ErrInvalid
|
|
}
|