7 lines
203 B
Python
7 lines
203 B
Python
from pyinfra.visitor.strategies.response.response import ResponseStrategy
|
|
|
|
|
|
class ForwardingStrategy(ResponseStrategy):
|
|
def handle_response(self, analysis_response):
|
|
return analysis_response
|