From e806cd7e519058caf2479ee7c9614ccf6b2913f0 Mon Sep 17 00:00:00 2001 From: ben Date: Mon, 3 Aug 2026 12:12:36 +0200 Subject: [PATCH] update --- backend/auth.py | 2 ++ git-helper | 13 +++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 git-helper 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 ~