mitmproxy/netlib/http/http2/__init__.py
2016-10-17 18:03:07 +13:00

10 lines
198 B
Python

from netlib.http.http2.framereader import read_raw_frame, parse_frame
from netlib.http.http2.utils import parse_headers
__all__ = [
"read_raw_frame",
"parse_frame",
"parse_headers",
]