diff --git a/backend/auth.py b/backend/auth.py index e69de29..6b2d946 100644 --- a/backend/auth.py +++ b/backend/auth.py @@ -0,0 +1,2 @@ +from database import execute +import bcrypt \ No newline at end of file diff --git a/git-helper b/git-helper new file mode 100644 index 0000000..1a9efad --- /dev/null +++ b/git-helper @@ -0,0 +1,13 @@ +#!/bin/bash + +cd ~/Desktop/calender || exit + +git add . + +read -p "commit msg: " COMMITMSG + +git commit -m "$COMMITMSG" + +git push + +cd ~