8 lines
191 B
Python
8 lines
191 B
Python
|
from modules.Classes.UserCredentials import UserCredentials
|
||
|
|
||
|
|
||
|
class Config:
|
||
|
def __init__(self, args):
|
||
|
self.args = args
|
||
|
self.UserCredentials = UserCredentials(args.config)
|