mirror of
https://github.com/mirror/wget.git
synced 2024-12-29 14:30:48 +08:00
10 lines
200 B
Python
10 lines
200 B
Python
|
from conf import hook
|
||
|
|
||
|
@hook(alias='Domains')
|
||
|
class Domains:
|
||
|
def __init__(self, domains):
|
||
|
self.domains = domains
|
||
|
|
||
|
def __call__(self, test_obj):
|
||
|
test_obj.domains = self.domains
|