mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04: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']
|