Change /delete command to /del (#4)

* Update bot_commands.py

* Update README.md
This commit is contained in:
Hafitz Setya 2021-02-18 19:52:04 +07:00 committed by GitHub
parent 451017b24e
commit 96f5c1fdee
Signed by untrusted user: GitHub
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -47,6 +47,7 @@ Fork this repo, than upload credentials.json and token.pickle to your forks
- Service account support
- Mirror all youtube-dl supported links
- Mirror telegram files
- Delete files from drive
- Add stickers to your pack
- Nyaa.si and Sukebei Torrent search
- Shell and Executor

View File

@ -18,6 +18,6 @@ class _BotCommands:
self.CloneCommand = "clone"
self.WatchCommand = 'watch'
self.TarWatchCommand = 'tarwatch'
self.DeleteCommand = 'delete'
self.DeleteCommand = 'del'
BotCommands = _BotCommands()