bozo-backend/database.py

11 lines
264 B
Python

import config
import Database
host = config.database.get("ip")
port = config.database.get("port")
user = config.database.get("user")
password = config.database.get("password")
database = Database.Database(host, port, user, password)
database.create_user_table()