mirror of
https://github.com/D3Ext/Hooka
synced 2026-06-08 10:49:57 +00:00
23 lines
279 B
Go
23 lines
279 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"github.com/D3Ext/Hooka/pkg/hooka"
|
|
)
|
|
|
|
func main(){
|
|
check, err := hooka.AutoCheck()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
if (check == true) {
|
|
fmt.Println("Probably a sandbox")
|
|
return
|
|
}
|
|
|
|
fmt.Println("Not a sandbox")
|
|
}
|
|
|