mirror of
https://github.com/mirror/wget.git
synced 2025-01-20 09:10:14 +08:00
10 lines
215 B
Python
10 lines
215 B
Python
|
from conf import rule
|
||
|
|
||
|
|
||
|
@rule()
|
||
|
class Authentication:
|
||
|
def __init__ (self, auth_obj):
|
||
|
self.auth_type = auth_obj['Type']
|
||
|
self.auth_user = auth_obj['User']
|
||
|
self.auth_pass = auth_obj['Pass']
|