18 lines
516 B
Python
18 lines
516 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
proxy.py
|
|
~~~~~~~~
|
|
⚡⚡⚡ Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on
|
|
Network monitoring, controls & Application development, testing, debugging.
|
|
|
|
:copyright: (c) 2013-present by Abhinav Singh and contributors.
|
|
:license: BSD, see LICENSE for more details.
|
|
"""
|
|
from abc import ABC
|
|
|
|
|
|
class HttpWebServerBaseMiddleware(ABC):
|
|
"""Web Server Middle-ware for customization during request/response dispatch lifecycle."""
|
|
|
|
pass
|