1from conf import rule
2
3""" Rule: SendHeader
4Have the server send custom headers when responding to a request for the file
5this rule is applied to. The header_obj object is expected to be dictionary
6mapping headers to their contents. """
7
8
9@rule()
10class SendHeader:
11    def __init__(self, header_obj):
12        self.headers = header_obj
13