formalised project structure
This commit is contained in:
parent
897272d7c1
commit
6f8a7322f2
14 changed files with 177 additions and 71 deletions
12
bcrypter.py
Normal file
12
bcrypter.py
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
from bcrypt.cli import repl
|
||||
|
||||
def main():
|
||||
repl()
|
||||
|
||||
if __name__ == '__main__':
|
||||
try:
|
||||
main()
|
||||
except KeyboardInterrupt:
|
||||
print('\n[!] SIGINT')
|
||||
except EOFError:
|
||||
print('\n[!] EOF')
|
||||
Loading…
Add table
Add a link
Reference in a new issue