formalised project structure

This commit is contained in:
Emile Clark-Boman 2025-06-21 19:05:47 +10:00
parent 897272d7c1
commit 6f8a7322f2
14 changed files with 177 additions and 71 deletions

12
bcrypter.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')