fix(database): Fixed the database connection

This commit is contained in:
Kita Trofimov
2025-10-26 19:14:51 +03:00
parent c117ceb85e
commit 3e4755cca1
2 changed files with 15 additions and 31 deletions
-10
View File
@@ -1,10 +0,0 @@
import psycopg
import os
def PSQLConnect():
conn = psycopg.connect(os.getenv('POSTDRESS_CONNECTION'))
return conn
def PSQLCursor(conn):
cur = conn.cursor()
return cur