7 lines
152 B
Python
7 lines
152 B
Python
import os
|
|
from helix.db.sql_manager import SQLManager
|
|
|
|
|
|
def sql_session_maker():
|
|
return SQLManager.get_sql_session_maker(os.getenv('DATABASE_URL'))
|