Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

New command names added #17

Merged
merged 2 commits into from
Aug 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
env
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ def __init__(self):
self.toAddress = None


@app.command(help = "Ability to move the files within the directory")
@app.command("move",help = "Ability to move the files within the directory")
def m():
typer.echo("Executing command --m")
BeginMovingFiles = MainModel()
BeginMovingFiles.obtain_directory()


@app.command(help = "Ability to search the specific directory")
@app.command("search",help = "Ability to search the specific directory")
def s():
typer.echo("Executing command --s")
#Create new FileSearcher Object
Expand Down