mirror of
https://github.com/Ed1s0nZ/PrivHunterAI.git
synced 2025-05-07 03:02:52 +00:00
18 lines
149 B
Go
18 lines
149 B
Go
package main
|
|
|
|
import (
|
|
"sync"
|
|
"yuequanScan/config"
|
|
)
|
|
|
|
var logs sync.Map
|
|
|
|
func main() {
|
|
|
|
config.GetConfig()
|
|
|
|
go Index()
|
|
go mitmproxy()
|
|
scan()
|
|
}
|