Create main.go

This commit is contained in:
公明 2025-01-16 10:28:40 +08:00 committed by GitHub
commit 28beeb075e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

12
main.go Normal file
View File

@ -0,0 +1,12 @@
package main
import (
"sync"
)
var logs sync.Map
func main() {
go mitmproxy()
scan()
}