split source code for each command.

This commit is contained in:
2023-05-10 18:17:35 +09:00
parent dd0b0ba68f
commit 97007233c6
22 changed files with 620 additions and 553 deletions

View File

@ -1,13 +1,29 @@
from mdrsclient.commands.config import ConfigCommand
from mdrsclient.commands.file import FileCommand
from mdrsclient.commands.folder import FolderCommand
from mdrsclient.commands.laboratory import LaboratoryCommand
from mdrsclient.commands.user import UserCommand
from mdrsclient.commands.download import DownloadCommand
from mdrsclient.commands.file_metadata import FileMetadataCommand
from mdrsclient.commands.labs import LabsCommand
from mdrsclient.commands.login import LoginCommand
from mdrsclient.commands.logout import LogoutCommand
from mdrsclient.commands.ls import LsCommand
from mdrsclient.commands.metadata import MetadataCommand
from mdrsclient.commands.mkdir import MkdirCommand
from mdrsclient.commands.mv import MvCommand
from mdrsclient.commands.rm import RmCommand
from mdrsclient.commands.upload import UploadCommand
from mdrsclient.commands.whoami import WhoamiCommand
__all__ = [
"ConfigCommand",
"FileCommand",
"FolderCommand",
"LaboratoryCommand",
"UserCommand",
"DownloadCommand",
"FileMetadataCommand",
"LabsCommand",
"LoginCommand",
"LogoutCommand",
"LsCommand",
"MetadataCommand",
"MkdirCommand",
"MvCommand",
"RmCommand",
"UploadCommand",
"WhoamiCommand",
]