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
|
package main
|
||||||
|
|
||||||
import proxy "github.com/lqqyt2423/go-mitmproxy"
|
import (
|
||||||
|
"log"
|
||||||
|
|
||||||
|
proxy "github.com/lqqyt2423/go-mitmproxy"
|
||||||
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
proxy.Create()
|
log.Fatal(proxy.NewProxy().Start())
|
||||||
proxy.Init()
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue