continued reorganisation

This commit is contained in:
Emile Clark-Boman 2025-06-21 21:29:00 +10:00
parent 6f8a7322f2
commit 0a2d9a5694
22 changed files with 190 additions and 61 deletions

12
bcrypter/__main__.py Normal file
View 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')