mitmproxy/netlib/http/http2/__init__.py

9 lines
201 B
Python
Raw Normal View History

2015-09-16 16:43:24 +00:00
from __future__ import absolute_import, print_function, division
from .connections import HTTP2Protocol
2016-06-01 02:06:57 +00:00
from netlib.http.http2 import framereader
2015-09-16 16:43:24 +00:00
__all__ = [
2016-06-01 02:06:57 +00:00
"HTTP2Protocol",
"framereader",
2015-09-16 16:43:24 +00:00
]