dockge-cli/dockge_cli/models/parser.py
Firq 537a0d8015
All checks were successful
/ backend-pylint (push) Successful in 11s
/ build-artifacts (push) Successful in 10s
/ publish-artifacts (push) Successful in 8s
Rewrote using command factory
2024-07-03 20:36:22 +02:00

11 lines
229 B
Python

import argparse
# pylint: disable=too-few-public-methods
class Arguments(argparse.Namespace):
command: str
# pylint: disable=too-few-public-methods
class Credentials(argparse.Namespace):
username: str
password: str