simple http handler
parent
cfa1b0eeaa
commit
c3ed4478d9
@ -0,0 +1,6 @@
|
||||
# go-mitmproxy
|
||||
|
||||
## TODO
|
||||
|
||||
- [x] http handler
|
||||
- [ ] https handler
|
@ -1,8 +1,11 @@
|
||||
package main
|
||||
|
||||
import proxy "github.com/lqqyt2423/go-mitmproxy"
|
||||
import (
|
||||
"log"
|
||||
|
||||
proxy "github.com/lqqyt2423/go-mitmproxy"
|
||||
)
|
||||
|
||||
func main() {
|
||||
proxy.Create()
|
||||
proxy.Init()
|
||||
log.Fatal(proxy.NewProxy().Start())
|
||||
}
|
||||
|
Loading…
Reference in New Issue