You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
413 B
Go
29 lines
413 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/lqqyt2423/go-mitmproxy/proxy"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func main() {
|
|
log.SetLevel(log.InfoLevel)
|
|
log.SetReportCaller(false)
|
|
log.SetOutput(os.Stdout)
|
|
log.SetFormatter(&log.TextFormatter{
|
|
FullTimestamp: true,
|
|
})
|
|
|
|
opts := &proxy.Options{
|
|
Addr: ":9080",
|
|
}
|
|
|
|
p, err := proxy.NewProxy(opts)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
log.Fatal(p.Start())
|
|
}
|