Made new utility plugin with hash, length and other text formatting commands
This commit is contained in:
parent
a16b1776f8
commit
52b14b367a
4 changed files with 42 additions and 22 deletions
|
@ -35,9 +35,3 @@ def decypher(inp):
|
|||
passwd = inp.split(" ")[0]
|
||||
inp = " ".join(inp.split(" ")[1:])
|
||||
return decode(passwd,inp)
|
||||
|
||||
|
||||
@hook.command
|
||||
def rot13(inp):
|
||||
"""rot13 <string> -- Encode <string> with rot13."""
|
||||
return inp.encode('rot13')
|
||||
|
|
Reference in a new issue