mirror of
https://github.com/Ed1s0nZ/PrivHunterAI.git
synced 2025-05-06 18:53:50 +00:00
14 lines
105 B
Go
14 lines
105 B
Go
package main
|
|
|
|
import (
|
|
"sync"
|
|
)
|
|
|
|
var logs sync.Map
|
|
|
|
func main() {
|
|
go Index()
|
|
go mitmproxy()
|
|
scan()
|
|
}
|