Cloak/cmd/ck-client/protector.go

11 lines
162 B
Go

//go:build !protector_android
// +build !protector_android
package main
import "syscall"
func protector(string, string, syscall.RawConn) error {
return nil
}