mirror of
https://github.com/mirror/wget.git
synced 2025-01-24 03:10:07 +08:00
8 lines
120 B
Python
8 lines
120 B
Python
|
from conf import rule
|
||
|
|
||
|
|
||
|
@rule()
|
||
|
class Response:
|
||
|
def __init__(self, ret_code):
|
||
|
self.response_code = ret_code
|