bsition/backend/configure.py

12 lines
204 B
Python

from dotenv import load_dotenv
from backend.postgres import *
from backend.elastic import *
def configure():
load_dotenv()
add_function()
create_user_table()
create_index("test-index")