mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-04 11:47:14 +00:00
7 lines
107 B
Python
7 lines
107 B
Python
import sys
|
|
|
|
resolver = None
|
|
if sys.platform == "linux2":
|
|
import linux
|
|
resolver = linux.Resolver()
|
|
|