2024-07-03 18:36:22 +00:00
|
|
|
import argparse
|
|
|
|
|
|
|
|
# pylint: disable=too-few-public-methods
|
|
|
|
class Arguments(argparse.Namespace):
|
2024-07-05 14:05:35 +00:00
|
|
|
"""
|
|
|
|
Default Arguments when calling the CLI
|
|
|
|
"""
|
2024-07-03 18:36:22 +00:00
|
|
|
command: str
|
|
|
|
|
|
|
|
# pylint: disable=too-few-public-methods
|
|
|
|
class Credentials(argparse.Namespace):
|
2024-07-05 14:05:35 +00:00
|
|
|
"""
|
|
|
|
Special Argument Namespace for login credentials of the login commands
|
|
|
|
"""
|
2024-07-03 18:36:22 +00:00
|
|
|
username: str
|
|
|
|
password: str
|