mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
11 lines
263 B
Python
11 lines
263 B
Python
from __future__ import absolute_import, print_function, division
|
|
|
|
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",
|
|
]
|