server current

This commit is contained in:
derlole
2025-06-26 00:06:58 +00:00
parent 00e701f3c1
commit e07176af52
5 changed files with 31 additions and 8 deletions

View File

@@ -74,6 +74,18 @@ def create_make_coffee():
conn.commit()
conn.close()
#temp --------------------------------------------
conn = sqlite3.connect(DB_PATH_COFFEE)
cursor = conn.cursor()
cursor.execute("""
INSERT INTO coffee (user, status)
VALUES (?, ?)
""", ("admin", "served"))
conn.commit()
conn.close()
#temp --------------------------------------------
return fullCommand
def create_coffee_entry():