mirror of
https://github.com/D3Ext/Hooka
synced 2026-06-08 10:49:57 +00:00
21 lines
257 B
Go
21 lines
257 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/D3Ext/Hooka/pkg/hooka"
|
|
"log"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
err := hooka.EnableACG()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
fmt.Println("ACG Guard enabled!")
|
|
time.Sleep(1000 * time.Second)
|
|
|
|
// Do some other stuff
|
|
}
|