mirror of https://gitee.com/openkylin/wget.git
12 lines
296 B
Python
12 lines
296 B
Python
from conf import rule
|
|
|
|
""" Rule: Response
|
|
When this rule is set against a certain file, the server will unconditionally
|
|
respond to any request for the said file with the provided response code. """
|
|
|
|
|
|
@rule()
|
|
class Response:
|
|
def __init__(self, ret_code):
|
|
self.response_code = ret_code
|